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

Need help scripts tfs 1.2

jurass

New Member
Joined
Jul 7, 2015
Messages
98
Reaction score
3
Location
Poland
Hi . I need script on use item , Click on item id example 9971 , item remove and get random mount 1 of 50 example . :) Please , who can help :) tfs 1.2
 
Use this as an example to build your own. Download your distribution's sources and acquire definitions from the luascript file.
Code:
function onUse(player, item)
     local mmount = math.random(1,50)
     player:addMount(mmount)
return true
end
 
Back
Top