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

Neox

New Member
Joined
Jul 3, 2009
Messages
5
Reaction score
0
I might be a newbie with scripts. But I was tryin' this Pet System and the last i never understood:

And make sure to add this on your logout sctipt
Top:

PHP:
dofile("./petConfig.lua")


and inside the onLogout

PHP:
if isCreature(getPlayerStorageValue(cid, storages.petUid)) == 1 then        if getPlayerStorageValue(cid, storages.petIsOnline) == 2 then            setPlayerStorageValue(cid, storages.petIsOnline, 1)        end    end


Where do i do that?
 
Back
Top