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

Vocation for mount

Nokturno

Not a human
Joined
Aug 7, 2009
Messages
606
Solutions
2
Reaction score
422
can someone tell me if its posible make something like this:

Code:
<mount id="1" looktype="368" name="Widow Queen" attackspeed="0" premium="0" vocation name="mage" default="1" speed="30"/>


add tthis mount just to mages Mounts???
...
can someone edit my script, cuz this one its not working...
 
can u edit this one as an example:

local firstItems =
{
2050,
2382
}

function onLogin(cid)
if getPlayerStorageValue(cid, 30001) == -1 then
for i = 1, table.maxn(firstItems) do
doPlayerAddItem(cid, firstItems, 1)
end
if getPlayerSex(cid) == 0 then
doPlayerAddItem(cid, 2651, 1)
else
doPlayerAddItem(cid, 2650, 1)
end
local bag = doPlayerAddItem(cid, 1987, 1)
doAddContainerItem(bag, 2674, 1)
setPlayerStorageValue(cid, 30001, 1)
end
return TRUE
end
 
Nice tabbing bruh.
Just make it check for player vocation onLogin and if it returns 1 (Sorcerer) then allow him to use a certain mount?
 

Similar threads

Back
Top