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

Can someone make me a simple help?

Zerak456

Gorlex.net NEW!
Joined
Aug 13, 2008
Messages
1,060
Reaction score
6
:thumbup:CAN SOMEONE MAKE ME a portal only players with storage 11551 can enter if they dont got it comes a message "u need to was vip to enter this portal

in portal i need to set pos and unique id.. can u guys make?


or u can make a tile only players with storage 11551 can walk on and when they walk on it they teleport..


can u guys make it?

lua scripters:thumbup:


REP++
!'



msg me the script plz!!
 
Try this

[in Movments/scripts]
Code:
function onStepIn(cid, item, position, fromPosition)
	if (getPlayerStorageValue(cid, 11000) == -1) then
		doTeleportThing(cid, fromPosition)
                doPlayerSendCancel(cid, "You are not VIP player.")
	end
	return TRUE
end

Code:
        <movement type="StepIn" actionid="11001" event="script" value="vip.lua"/>

How to make it work:
1. Double click on the floor beside the tp in your map editor
2. Then you add this code to actionid '11001'
3. Now it should work =)


Kind Regards, Runarm.
 
Last edited:
how does it works?

wat u mean beside tp

also i want one

u walk on tile


and get teleported..


//EDIT
NVM

this one works good :)

REP++ :D
 
Back
Top