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

Solved error in pot

JonatasLucas

New Member
Joined
Jun 12, 2013
Messages
116
Reaction score
3
all the posts that I am using is giving this error

10558598_499820250149092_692402480_o.jpg
 
Change
Code:
local attackerPos = getCreaturePosition(attacker)

To
Code:
local attackerPos = getCreaturePosition(cid)
if isCreature(attacker) then
       attackerPos = getCreaturePosition(attacker)
end
 
Back
Top