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

Movements WORKS?

tuppan

New Member
Joined
Jun 27, 2008
Messages
43
Reaction score
2
PHP:
--function by Armageddom--
function onStepIn(cid, item, frompos, item2, topos) 

playerpos = getPlayerPosition(cid) 
novapos = {x=384, y=428, z=7} 

if item.uid == 9113 then

getThingfromPos(playerpos) 
doSendMagicEffect(playerpos,2) 
doTeleportThing(cid,novapos) 
doSendMagicEffect(novapos,10) 
end 
end

Why does't works on 0.3.5 (TFS 8.50) :(
 
lol? what it is doing?:
Lua:
getThingfromPos(playerpos)
? ;DD

take
Lua:
function onStepIn(cid, item, frompos, item2, topos) 
	novapos = {x=384, y=428, z=7} 
	if item.uid == 9113 then
		doSendMagicEffect(getPlayerPosition(cid),2) 
		doTeleportThing(cid,novapos,TRUE) 
		doSendMagicEffect(novapos,10) 
	end 
	return TRUE
end
 
Back
Top