• 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 Script Error

bolero

MikeHere
Joined
Apr 13, 2009
Messages
1,146
Reaction score
12
Location
Venezuela
Code:
function onStepIn(cid, item, pos)
local p = getPlayerPosition(cid)
local nppos = {x=p.x-1, y=p.y, z=p.z, stackpos=1}

if item.actionid == 2002 then
		if isPremium(cid) then
else
doTeleportThing(cid,nppos)
doPlayerSendTextMessage(cid,22,"Solo pueden pasar personas VIP Account. Para comprar vip account dirijase a: www.lithium-online.net para mas informacion.")
end
end
end

The error is the following...
 

Attachments

Im guessings its a 'Vip' tile?

Lua:
function onStepIn(cid, item, position, fromPosition)
if not isPremium(cid) then
   doTeleportThing(cid, fromPosition)
   doPlayerSendTextMessage(cid,22,"Solo pueden pasar personas VIP Account. Para comprar vip account dirijase a: [url=http://www.lithium-online.net]Lithium-Online - Latest News[/url] para mas informacion.")
end
return true
end
 

Similar threads

Back
Top