• 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!

A Npc... ^^

Winnerandy

Experienced Web Design'er
Joined
Oct 23, 2008
Messages
2,251
Reaction score
50
Location
Tellus.
Hi guys.

As the topic says, I need a npc..

Npc Information:

Name: Welcome
Look: CM/GM
Text:

Me: Hi!
Welcome: Welcome |PLAYERNAME| to |SERVERNAME|. We hope you enjoy playing in this server. We hope you follow the rules that the server have. I will send you to my friend Informtion! {Ok}
Me: Ok
Welcome: Do you really want to continue?
Me: Yes

Then Welcome teleports ME to X: x Y: x Z: x

Regards,
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Welcome" script="data/npc/scripts/default.lua" walkinterval="0" floorchange="0">
	<health now="150" max="150"/>
	<look type="266" head="39" body="122" legs="125" feet="57" addons="0"/>
    <parameters>
        <parameter key="module_travel" value="1"/>
		<parameter key="message_greet" value="Welcome |PLAYERNAME| to |SERVERNAME|. We hope you enjoy playing in this server. We hope you follow the rules that the server have. I will send you to my friend Informtion!{Ok}"/>
        <parameter key="travel_destinations" value="Ok,159,338,6,50;"/>
    </parameters>
</npc>

not tested.
 
Cool, thanks..

I'll test it soon..

Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Welcome" script="data/npc/scripts/default.lua" walkinterval="0" floorchange="0">
	<health now="150" max="150"/>
	<look type="266" head="39" body="122" legs="125" feet="57" addons="0"/>
    <parameters>
        <parameter key="module_travel" value="1"/>
		<parameter key="message_greet" value="Welcome |PLAYERNAME| to |SERVERNAME|. We hope you enjoy playing in this server. We hope you follow the rules that the server have. I will send you to my friend Informtion!{Ok}"/>
        <parameter key="travel_destinations" value="Ok,159,338,6,50;"/>
    </parameters>
</npc>

not tested.

When I say OK, It doesn't teleport me any place?
 
Last edited by a moderator:
Back
Top