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

Elfbot script

radzio11200

New Member
Joined
May 17, 2016
Messages
1
Reaction score
0
Hello. I need a script for elfbot. I've never used it before so I have no idea how to make scripts neither.

I need a script

After gain 717217lvl, my character has to write Hi , rebirth, yes. The NPC name is Prestige NPC.
He is on exp place, near pz zone. Can someone help me? :<

Sry for my bad english.
 
in your waypoints you should have a script that checks the following at the end of your hunting "loop"

Code:
if [$level> xxx] gotolabel rebirth
gotolabel start

the start label should be at the start of your waypoints.
after this script part you should make the route to the ribrithing guy.
the firstwaypoint towards the ribirthing guy should have a label callerd rebirth
the script for talking to the npc should be as following:

Code:
follow 'npcname'
wait 300
say 'hi'
wait 500
npcsay 'what you need to say to get rebirth'
wait 500
npcsay 'yes'
wait 500
npcsay 'bye'
 
Back
Top