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

Lua Scripts

Exectric

New Member
Joined
Jun 6, 2007
Messages
25
Reaction score
0
I need a script, preferably XML for an 8.1 server. Server is Aries XML

I need basically a prestige thing, an npc that makes you level 1 without any of your previous stats, like it changes a knight into a sissy, and only a knight can do that, but I need it to do it for druids too, it turns druids into gangsters. request is basically an "Oracle that changes you from one voc to another voc but you start over at level one, and you can only be a certain voc to do it.

If you can script this, we want you to help us on our server, we will offer a GM position.
 
Last edited:
1

Code:
local pos = {x = 1000, y = 1000, z = 7} --- position u get teleported to

function onUse (cid, item, fromPosition, itemEx, toPosition)
  if isPlayer(itemEx.uid) then
  doTeleportThing(cid,pos)
  end  
   return true
end

It's Actions ;p
2.

I don't understand your second request y_y
 
1

Code:
local pos = {x = 1000, y = 1000, z = 7} --- position u get teleported to

function onUse (cid, item, fromPosition, itemEx, toPosition)
  if isPlayer(itemEx.uid) then
  doTeleportThing(cid,pos)
  end  
   return true
end

It's Actions ;p
2.

I don't understand your second request y_y

Yes but how do you turn that into a rune?
and the second request is basically an "Oracle that changes you from one voc to another another voc but you start over at level one, and you can only be a certain voc to do it.
 
you mean the same rune?

Code:
local pos = {x = 1000, y = 1000, z = 7} --- position u get teleported to

function onUse (cid, item, fromPosition, itemEx, toPosition)
  if isPlayer(itemEx.uid) and getPlayerGroupId(cid) >= 2 then
  doTeleportThing(cid,pos)
else
  doPlayerSendCancel(cid,"Only VIP players can use this rune")
  end  
   return true
end
 
Back
Top