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

Solved Vocation Teleport

freddzor11

Member
Joined
May 25, 2009
Messages
695
Reaction score
5
Hello, I want that many vocations can enter not just one like in this script
Code:
function onStepIn(cid, item, frompos, item2, topos)
 
    local vocation = getPlayerVocation(cid)
    local nvtp = {x=1000, y=1000, z=7}
    local vtp = {x=1001, y=1001, z=7}
 
 
    if vocation == 12 then
        doCreatureSay(cid, "Welcome!", TALKTYPE_ORANGE_1)
		doTeleportThing(cid, vtp, TRUE)
    else
        doCreatureSay(cid, "Only Epic's are allowed to enter.", TALKTYPE_ORANGE_1)
                doTeleportThing(cid, nvtp, FALSE)
    end
end
 
Enjoy!
LUA:
function onStepIn(cid, item, frompos, item2, topos)
    local nvtp = {x=1000, y=1000, z=7}
    local vtp = {x=1001, y=1001, z=7}
 
    if isPlayer(cid) then
        doCreatureSay(cid, "Welcome!", TALKTYPE_ORANGE_1)
	doTeleportThing(cid, vtp, TRUE)
    else
        doCreatureSay(cid, "Only Epic's are allowed to enter.", TALKTYPE_ORANGE_1)
        doTeleportThing(cid, nvtp, FALSE)
    end
end
 
Sorry,
Enjoy!
LUA:
function onStepIn(cid, item, frompos, item2, topos)
 
    local vocations = {1,2} -- Add VocId, Which vocations can enter!
    local nvtp = {x=1000, y=1000, z=7}
    local vtp = {x=1001, y=1001, z=7}
 
    if not(isPlayer(cid)) then return true end
    if isInArray(vocations,getPlayerVocation(cid)) then
        doCreatureSay(cid, "Welcome!", TALKTYPE_ORANGE_1)
	doTeleportThing(cid, vtp, TRUE)
    else
        doCreatureSay(cid, "Only Epic's are allowed to enter.", TALKTYPE_ORANGE_1)
        doTeleportThing(cid, nvtp, FALSE)
    end
end
 
Ninja what is wrong with mine? also your script will cause error if a monster steps into it :P

- - - Updated - - -

Nah Ninja you doing wonderful job :) You bounce on every theard and helping :D
 
Back
Top