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

Lua Vip Teleport

Dejm

Oh hun...
Joined
Nov 29, 2008
Messages
120
Reaction score
4
Location
United Kingdom
Hello,

I want to ask If somebody have or 'Can make' script for normal teleport (ID:1387), but to go through it you will need the VIP.

This script should be for Tibia 8.54 (The Forgotten Server 0.3.6).


Thank You.
 
PHP:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	doTeleportThing(cid, isVip(getPlayerAccount(cid)) and {x=1000,y=1000,z=7} or fromPosition, true)
end

That's mine..

(credits to cykotitan so rep him)
 
Code:
function onStepIn(cid, item, fromPosition, toPosition)
	local storage = 44551
	if(not getPlayerStorageValue(cid, storage)) then
		doCreatureSay(cid, "VIP Access Only.")
		doTeleportThing(cid, fromPosition)
	end
	return true
end
 
PHP:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	doTeleportThing(cid, isVip(getPlayerAccount(cid)) and {x=1000,y=1000,z=7} or fromPosition, true)
end

That's mine..

(credits to cykotitan so rep him)
he's not using the same vip system :D
 
PHP:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	doTeleportThing(cid, isVip(getPlayerAccount(cid)) and {x=1000,y=1000,z=7} or fromPosition, true)
end

That's mine..

(credits to cykotitan so rep him)

Thats only if you have the custom vip system enabled, he probably only needs one with a storage value
 
Back
Top