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

Need help with this script!

Kojiiro

Nobody cares. Do yourself.
Joined
May 10, 2010
Messages
534
Reaction score
9
Location
Brazil
the good guys otland I wanted to put this script

PHP:
function onStepIn(cid, item, position, fromPosition)

player1pos = getPlayerPosition(cid) 
novapos1 = {x=1022, y=1027, z=7}
novapos2 = {x=32360, y=31782, z=7}
msg = "You not VIP"

if item.uid == 29000 then
if isPremium(cid) then
doTeleportThing(cid,novapos1)
else
doPlayerSendTextMessage(cid,22,msg)
doTeleportThing(cid,novapos2)
end
return 1
end
end

to send the message in red instead of white, someone could do this for me? i deo I tried not too sure.

hugs kojiiro :thumbup:
 
Code:
function onStepIn(cid, item, position, fromPosition)
	if isPremium(cid) then
		doTeleportThing(cid, {x=1022, y=1027, z=7})
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, 'You are not VIP')
		doTeleportThing(cid, {x=32360, y=31782, z=7})
	end
end
 
Back
Top