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

[8.60] Non Player Characters

Abbeh

New Member
Joined
Nov 22, 2012
Messages
98
Reaction score
1
Location
Sweden, Gothenburg
Good evening fellows,

What I just stumbled across was pretty expected to be honest, I have only a few NPCs on the server.
Does anyone happen to have download links to the NPCs "Malak" and "Frodo"?

Thank you in advance!
 
This should go in Requests

All do I'll give them to you,

Malak:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Malak" script="data/npc/scripts/runes.lua" walkinterval="2000" floorchange="0">
	<health now="100" max="100"/>
	<look type="145" head="94" body="114" legs="94" feet="94" addons="3"/>
	<parameters>
		<parameter key="message_greet" value="Hola |PLAYERNAME|. Yo Vendo Runes , Pociones , Rods Y Wands."/>
		<parameter key="message_decline" value="Is |TOTALCOST| No tienes dinero para comprar? Vete de aqui!"/>
	</parameters>
</npc>

Frodo:
Code:
<?xml version="1.0"?>

<npc name="Frodo" script="data/npc/scripts/seller.lua" walkinterval="2000" floorchange="0">
	<mana now="800" max="800"/>
	<health now="200" max="200"/>
<look type="134" head="114" body="113" legs="113" feet="113"/>
	<parameters>
		<parameter key="module_shop" value="1" />
		<parameter key="message_greet" value="Hello |PLAYERNAME|. I sell ropes (50gp), shovels (20gp), backpacks (10gp), fishing rods (100gp), amulet of loss (10k), and torches (2gp). I buy vials (10gp)." />
		<parameter key="shop_buyable" value="vial,2006,10;flask,2006,10" />
		<parameter key="shop_buyable" value="shovel,2554,20;backpack,1988,10;fishing rod,2580,100;torch,2050,2;rope,2120,50;amulet of loss,2173,10000" />
	</parameters>
</npc>

Remember that REP will help me a lot :)
 
Thank you, and you don't happen to know Spanish? People are going to have a rough time unless they know Spanish while speaking with Malak! :)

Stupid me, I'm Mexican so,

Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Malak" script="data/npc/scripts/runes.lua" walkinterval="2000" floorchange="0">
	<health now="100" max="100"/>
	<look type="145" head="94" body="114" legs="94" feet="94" addons="3"/>
	<parameters>
		<parameter key="message_greet" value="Hi |PLAYERNAME|. I sell runes , Potions , Rods and Wands."/>
		<parameter key="message_decline" value="Is |TOTALCOST| You don't have money? get out of here!"/>
	</parameters>
</npc>

Sorry for that.
 
I see, well.. Thank you very much!

I have only one more question..
The "seller.lua" file.. Do you have that? I think that's required to make things work, it's not in my folder :)


Code:
<?xml version="1.0"?>

<npc name="Frodo" [COLOR="#FF0000"]script="data/npc/scripts/seller.lua"[/COLOR] walkinterval="2000" floorchange="0">
	<mana now="800" max="800"/>
	<health now="200" max="200"/>
<look type="134" head="114" body="113" legs="113" feet="113"/>
	<parameters>
		<parameter key="module_shop" value="1" />
		<parameter key="message_greet" value="Hello |PLAYERNAME|. I sell ropes (50gp), shovels (20gp), backpacks (10gp), fishing rods (100gp), amulet of loss (10k), and torches (2gp). I buy vials (10gp)." />
		<parameter key="shop_buyable" value="vial,2006,10;flask,2006,10" />
		<parameter key="shop_buyable" value="shovel,2554,20;backpack,1988,10;fishing rod,2580,100;torch,2050,2;rope,2120,50;amulet of loss,2173,10000" />
	</parameters>
</npc>
 
Proper grammar.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Malak" script="data/npc/scripts/runes.lua" walkinterval="2000" floorchange="0">
	<health now="100" max="100"/>
	<look type="145" head="94" body="114" legs="94" feet="94" addons="3"/>
	<parameters>
		<parameter key="message_greet" value="Hello |PLAYERNAME|. I sell runes, potions, rods and wands."/>
		<parameter key="message_decline" value="It costs |TOTALCOST| You don't have enough cash to buy this item, come back later."/>
	</parameters>
</npc>

Stupid me, I'm Mexican so,

Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Malak" script="data/npc/scripts/runes.lua" walkinterval="2000" floorchange="0">
	<health now="100" max="100"/>
	<look type="145" head="94" body="114" legs="94" feet="94" addons="3"/>
	<parameters>
		<parameter key="message_greet" value="Hi |PLAYERNAME|. I sell runes , Potions , Rods and Wands."/>
		<parameter key="message_decline" value="Is |TOTALCOST| You don't have money? get out of here!"/>
	</parameters>
</npc>

Sorry for that.
 
Proper grammar.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Malak" script="data/npc/scripts/runes.lua" walkinterval="2000" floorchange="0">
	<health now="100" max="100"/>
	<look type="145" head="94" body="114" legs="94" feet="94" addons="3"/>
	<parameters>
		<parameter key="message_greet" value="Hello |PLAYERNAME|. I sell runes, potions, rods and wands."/>
		<parameter key="message_decline" value="It costs |TOTALCOST| You don't have enough cash to buy this item, come back later."/>
	</parameters>
</npc>

Vete de aqui!= get out of here

No tienes dinero? =You don't have money?

You just changed, Potions , Rods and Wands., you need to reply just for that?
 
Potions , Rods and Wands <--- bad use of capitalization and such. Yes, yes I did.
And you wrote Is l totalcost l -- So "Is 3000 You don't have money? get out of here!" Bad.
 
Back
Top