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

Help, Area in Yellow skull

igorlabanca

New Member
Joined
Aug 15, 2010
Messages
36
Reaction score
3
Well this script, the player to step in this area , all server earn yellow skull , but I'd like just who had the area won the yellow skull

Code:
function onThink(player, interval, item, position, lastPosition, fromPosition, toPosition)

for posx = 1251,1259 do
for posy = 716,724 do
local pos = Position (posx, posy, 6)
local creature = getTopCreature(pos).uid
if isPlayer(creature) then
player:setSkull(SKULL_YELLOW)
return true
end
end
end
end

Thanks
 
Back
Top