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

I pay for a script

Sami_san

New Member
Joined
May 20, 2016
Messages
76
Reaction score
1
Im gonna pay good money for a script for vocation doors.
what i need?
-when player use the door he goes through them gets vocation sorcerer But he needs minimum level 8 and if its possible cant go back through the doors again ( i need it for dawnport doors that give voc )

-next script i need
player walk on sqm he gets items and when he walk on another sqm the items are taken from him (its also needed for dawnport)
 
i have all dawnport done, sqm get vocations, items, etc let me find them and winrar to up :D
 
for the walk on sqm you can use
function onStepIn(creature, item, position, fromPosition)
if position == x then
remove items
end
if position == y then
add items
end

and for vocation door you can use
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
if item:getId() == door then
if player:getStorageValue(storage) ~= 1 then
if player:getVocation():getId() == 0 then
if player:getLevel() >= 8 then
player:setVocation(x)
player:setStorageValue(storage, 1)
end
end
end
end
end
 
Back
Top