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

Search results

  1. velocitraptor

    Bank Check System

    Hi, this is a system i made just for fun, i hope you like it. How it works? If you have enough cash on your bank account you could create a document with cash (A.K.A. check) then someone could get that cash when click on it. How to create check? Use the command /bankCheck amount <- where...
  2. velocitraptor

    TalkAction [TFS 1.1+] Monsters required to level up

    Hi, this is a remake i did to a script who @tetra20 did here It says how many monsters are required to level up. data/talkactions/scripts/monstersreq2lv.lua local function getExperienceForLevel(lv) lv = lv - 1 return ((50 * lv * lv * lv) - (150 * lv * lv) + (400 * lv)) / 3 end local...
  3. velocitraptor

    [Function] Game.getContainerItemsById(containerList, itemId, player)

    Hi, this is my first post, i want to share a remake i did to a function who @Summ made here This is a function to find an item on a container or a container list, of course you could add a player to check on his/her equipment too. Here is it: function Game.getContainerItemsById(containerList...
Back
Top Bottom