• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

NPC that gives you information of the server

Sir MoX

New Member
Joined
Jan 14, 2009
Messages
285
Reaction score
1
Hi, I need a npc to be in the beggining of my server that could give information of the server for example I want this:
Sir Mox: hi
NPC: hi sir mox! welcome to (the server name) what would you like to know: cities, premium, and promotion npcs, other.
Sir Mox: cities or city
NPC: what city would you like to know: Camelot, Egipt or Sajona?
sir mox: camelot
npc: bla, bla bla
sir mox: sajona:
npc: bla bla bla
sir mox: egipt
NPC: bla bla bla
Sir Mox: Premium and promotion
npc: for buying premium you can use the command !buypremium for 5k for 10 days and for having promotion you can go to the king of your city and ask him
sir Mox: npc
NPC: in all city you will find different npc that will give everything you will need like magic store, buying or selling weapons, paladin store, equipment store, outfit store and more!
Sir Mox: other
Npc: you want to know about: the map, hunt or information of (server name)
sir mox: map
npc: well, the (name of the server) has 5 cities, the other 2 that I didnt talk is Transilvania in the north of Camelot and it is goberned by undead people and the other city is Tartaro that only you can go by boat being lvl 50 and there you will find the most dificult quests that you will probably will like to do like Annihilator,Pits of inferno or Demon helmet quest.
Sir mox: hunt.
npc: the hunt zones are divided in 2 parts that are the begginers teleports that you dont need to be premium and the teleports for premium that are more advanced monsters with many quest and to travel to other city. YOU MUST KNOW THAT TO GET BACK TO THE CITY AFTER HUNTING YOU MUST DO IT WALKING!
sir mox: information
npc: the server is with stages you will begin with x17 then x12 then x7 finally x5 magic: x7 skills:x15 redskull: kill5

please if someone could do something like this please =) rep++
 
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Guide" script="default.lua" walkinterval="2000" floorchange="0">
	<health now="100" max="100"/>
	<look type="268" head="114" body="94" legs="114" feet="114" addons="3"/>
	<parameters>
		<parameter key="message_greet" value="Hey |PLAYERNAME|, welcome to (the server name) what would you like to know: {cities}, premium, and promotion npcs, other" />
		<parameter key="module_keywords" value="1" />
		<parameter key="keywords" value="cities;camelot;sajona;egipt;Premium and promotion;npc;other;map;hunt;information" />
 
		<parameter key="keyword_reply1" value="what city would you like to know: Camelot, Egipt or Sajona?." />
		<parameter key="keyword_reply2" value="bla, bla bla." />
		<parameter key="keyword_reply3" value="bla, bla bla." />
		<parameter key="keyword_reply4" value="bla, bla bla." />
		<parameter key="keyword_reply5" value="for buying premium you can use the command !buypremium for 5k for 10 days and for having promotion you can go to the king of your city and ask him." />
		<parameter key="keyword_reply6" value="in all city you will find different npc that will give everything you will need like magic store, buying or selling weapons, paladin store, equipment store, outfit store and more!." />
		<parameter key="keyword_reply7" value="you want to know about: the map, hunt or information of (server name)." />
		<parameter key="keyword_reply8" value="well, the (name of the server) has 5 cities, the other 2 that I didnt talk is Transilvania in the north of Camelot and it is goberned by undead people and the other city is Tartaro that only you can go by boat being lvl 50 and there you will find the most dificult quests that you will probably will like to do like Annihilator,Pits of inferno or Demon helmet quest." />
		<parameter key="keyword_reply9" value="the hunt zones are divided in 2 parts that are the begginers teleports that you dont need to be premium and the teleports for premium that are more advanced monsters with many quest and to travel to other city. YOU MUST KNOW THAT TO GET BACK TO THE CITY AFTER HUNTING YOU MUST DO IT WALKING!." />
		<parameter key="keyword_reply10" value="the server is with stages you will begin with x17 then x12 then x7 finally x5 magic: x7 skills:x15 redskull: kill5." />
	</parameters>
</npc>

very easy to edit
 
Back
Top