• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

TalkAction Request - advanced vip tp system -

Griffin0750

New Member
Joined
Sep 16, 2008
Messages
34
Reaction score
0
Like the title says .. i need a spacific VIP tp system, ive seen it in a few Ot's, examples-

!tp "1 <--- takes u to temple
!tp "house <---- to ur house
!save "tp <---- this SAVES your location, say if you were hunting and u wanted to go back for supplies... then if you wanted to return to the area you saved,
!tp "hunt <---- brings u back to that location

would really be helpfull if somone could help me out with this please :D
 
More info...

How does your vip system works, by storage, premium...?
Which server are u using, 0.2+ or 0.3+?

If you give me all those deatails i'll do it :D
 
LUA:
local config = {
	pos = getPlayerTown(cid)
	tmp = getTownName(pos)
	soul = -100 -- soul points
}

function onSay(cid, words, param, channel)
		if (getPlayerSoul(cid) >= 100 and isPlayerPzLocked(cid, false) and getPromotedVocation(cid, true) and doTeleportThing(cid, config.pos, true)) then
			config.tmp = getCreaturePosition(cid)
		if(doTeleportThing(cid, config.pos, true)) then
					doPlayerAddSoul(cid, config.soul)
			else
				doPlayerSendCancel(cid, "You need 100 soul point's.")
	else
	doPlayerSendCancel(cid, "Home town does not exists..")
		end
		return true
end

to temple
test this, only change checking promotion players for checking vip players (i dont have vip system and dont know functions)
 
omg, there are already like 3 VIP systems released? What more do u need? Btw, PUtifu, u should better update ur "Cpountry flags show" script to newest acc maker and tfs instead of doing ppl's requests here :D
 
Back
Top