[18/10/2009 01:56:03] [Warning - Protocol::RSA_decrypt] Not valid packet size
Help-me!!!
Code:
local function randi()
doTeleportThing(cid, {1081, 1023, 7}, TRUE)
return TRUE
end
local function randii()
doTeleportThing(cid, {1000, 1000, 7}, TRUE)
return TRUE
end
local rand = math.random(1,2)
function onLogin(cid)
if rand == 1 then
addEvent(randi, 2000)
elseif rand == 2 then
addEvent(randii, 2000)
end
return TRUE
end
Code:
<event type="login" name="PlayerTele" event="script" value="teleport.lua"/>
Help-me!!!