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

How to do a movement of anti push or another thing

dervin13

Active Member
Joined
Apr 26, 2008
Messages
459
Solutions
1
Reaction score
28
I'm with a problem that players can push eachother in trainer to pz zone... someone know a script that blocks anti push in the sqm of trainer or a script that when you push a lever it create a stone?
 
LUA:
local pos = {x = 1000,y = 1000,z = 7} -- edit this to the position of the stone

function onUse(cid, item, fromPosition, itemEx, toPosition)
if item.itemid == 1945
	doTileAddItemEx(pos, uid) -- uid stands for the unique id of the item
	doPlayerSendTextMessage(cid,21,"You have added a stone behind you")
elseif item.itemid == 1946
	doRemoveItem(uid) -- add same uid here
	doPlayerSendTextMessage(cid,21,"You removed the stone")

completely sleeping so its okay if it didn't work lol its 9am here will fix it tom if it didnt
 
Back
Top