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

[TFS] Remove Wall Script

JuggaloClown

New Member
Joined
May 8, 2008
Messages
35
Reaction score
0
I'm looking for a remove wall script for The Forgotten Server. An explanation on how to add it would be helpful, but if you have the script please post it anyway.

Thanks!
 
here u go :)
PHP:
- A script made by Clary 100% by a request from jpkulik
---------------------------- Start Config ----------------------------
local wallpos = {x=1000, y=1000, z=7, stackpos=1} -- Stone pos
local WALLID = 1414 -- wall id
----------------------------- End Config -----------------------------
function onUse(cid, item, fromPos, item2, toPos)
if item.actionid == 29001 and item.itemid == 1945 then
doRemoveItem(getThingfromPos(wallpos).uid)
doTransformItem(item.uid,1946)
else
doCreateItem(WALLID, 1, wallpos)
doTransformItem(item.uid, 1945)
end
return 1
end
 
Soul I will need to answer those threads forever those ppl doesn't search I wont till them search coz I love making scripts :p
 
Back
Top