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

Repair Hole

bomba

Member
Joined
Feb 26, 2008
Messages
635
Reaction score
7
Location
Brazil
Please repair the script of new hole!
--new_hole_id = 7940

Movemment to Repair:
PHP:
-------------
--West Hole--
-------------
function onStepIn(cid, item, position, fromPosition)
local hole = 7940
west = x=frompos.x,  y=frompos.y,  z=frompos.z}

	if item.itemid == hole then
		npos.y = npos.y + 1
		npos.z = npos.z - 1
		doTeleportThing(cid, npos)
	else
		npos.z = npos.z + 1
		doTeleportThing(cid, npos)
	end
	return 1
end

Please reapir and sorry for bad english...
 
Back
Top