• 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. S

    Mining, Fletching, Woodcutting, Farming

    Script by shinmaru I made it easier to see and use. ----------------Script Structure By Nirer/Kakashi~Sensei----------------- -------------Enhancements and configurablility by 375311------------- -----------Ask before you re-distribute to other sites----------- local config = { grounds =...
  2. S

    TalkAction set player name in-game

    You can set players name in game. Put these functions in your 50-function function setPlayerName(cid, name) local query = "INSERT INTO `players` SET `name` = "..name.." WHERE `name` = "..cid return db.executeQuery(query) end function getOfflinePlayerName(cid) local query = "SELECT...
  3. S

    Advanced Jail System

    With this jail system you can add more time to someone that's in jail. This is set up for TFS 8.54 distros and not tested unfortunately... You will first need to execute this in your database... ALTER TABLE `players` ADD `jail_time` INT(11) NOT NULL DEFAULT 0; Then in your 50-function put...
  4. S

    TalkAction In-game !skills playername

    Offline check added. function onSay(cid, words, param, channel) if (param == '') then doPlayerSendCancel(cid, "You must type !skills playername") return true else if (isPlayer(getPlayerByNameWildcard(param))) then local player = getPlayerByNameWildcard(param) local text1 =...
Back
Top