• 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 Citizen scirpt

chaosb

www.originaltibia.com
Joined
Sep 14, 2008
Messages
267
Reaction score
0
Location
Poland
Hello.

Anyone know or have citizen script for avesta 7.6? =]
Rep++ for this.
 
I would need a list of some of the old functions to write it for you. I can give you a basic idea... you are going to have to make something like this... "Keep in mind these might now be actual functions"
Code:
templepos = {x=197, y=197, z=7}

function onUse(cid, item, fromPosition, itemEx, toPosition)
   if item.itemid == 1945 and item.actionid == 20000 then
      doPlayerSetTemplePos(cid, templepos)
      doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE,'You are now a citizen of Here.')
end
return true
end

Been a long time since I have worked on 7.6, but that is going to be a base for you. You just need to find out which functions are which and change them out.
 
Back
Top