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

    OtLand Re-opening Staff Recruitment Board

    I made the account in 2009 but I was here before then. Anyway, none of this matters as far as becoming a staff member. It all depends what type of help they are looking for. I would be better suited as just a forum watcher than anything else. Though, I wouldn't mind the motivation to hone my...
  2. G

    C++ doSendAnimatedText in source

    Look in game.cpp or player.cpp for the code when a player changes their outfit. Then post it here please. edit: infact which ever file you find it it make a pastebin of the whole file and link it.
  3. G

    Easy to use LMS

    Yeah just an error. I meant to put target.
  4. G

    [8.54] The Forgotten Server 0.3.6pl1 (Crying Damson)

    re-upload please
  5. G

    Easy to use LMS

    I know there are 100 out there. I just wanted to give out an easy configurable one. local access = 3 local LMS_STARTED = 33231 local LMS_PLAYER = 33232 local LMS_PLAYERS = 33233 local max_players = 50 local min_players = 15 local LMS_top_left, LMS_bottom_right = {x = 1000, y = 1000, z =...
  6. G

    Tracking project - Tibia map (ACTIVE)

    Was just messing around... quote="zkum, post: 1938770, member: 40789"Im starting with premium areas
  7. G

    how to make teleports effects like that one in globalevents 8.60 but i wanna make it in 8.10

    You are going to have to explain a little better...
  8. G

    Orbs to sms points?

    Orb on kill function getPlayerOrbs(cid) SELECT `sms` FROM `accounts` WHERE `id` = getPlayerAccountId(cid) end function setPlayerOrbs(cid, amount) INSERT INTO `accounts` SET `orbs` = getPlayerOrbs(cid) + amount WHERE `id` = getPlayerAccountId(cid) end function onKill(cid, target) if...
  9. G

    Orbs to sms points?

    I dont know if you have the orbs and sms set up in your database.....but here you go.... local focuses = {} local function isFocused(cid) for i, v in pairs(focuses) do if(v == cid) then return true end end return false end local function addFocus(cid) if(not...
  10. G

    Tracking project - Tibia map (ACTIVE)

    Looks like all of south thais is not there
  11. G

    {help} sql query

    <3 rep+
  12. G

    {help} sql query

    Also what is the query to add a new column into a table in mysql. ty ninja
  13. G

    {help} sql query

    bump
  14. G

    {help} sql query

    Hey everyone, It has been some time sense I have been in the OT community. I was just wondering if someone could tell me how to set up a function to execute a SQL query I know it is something like this... function setDatabaseStorage(cid, storage, value) query = INSERT INTO `accounts` SET...
  15. G

    [Gesior 2012] First Tibia Global Layout

    cannot get it to find my server
  16. G

    GlobalEvent Automatic Botcheck System

    1. checks for players 2. botchecks and tells them to type !botcheck 3. Sends them a message every 2 seconds for 2 minutes that they need to type !botcheck 4. Bans the botter GlobalEvent: local BOTCHECKED_PLAYER_STORAGE = 25514 local time_to_ban = 2 local ban_days = 30...
  17. G

    Stian's Dev-cpp repack 0.2 (with crypto++ and 64bit) !

    someone reupload this please? cannot yet gesiors link working
  18. G

    Team [8.6] Realmap Project Looking for Scripters, GM's For A Real Server

    If this was true you wouldn't use so many words like: u.... Skype: nathan.scripter I am a great scripter msg me if you want some help with work. Im not looking for pay. I am a good moderator in-game and in-forums, though I do not care to much for actually talking to the players. I just try...
  19. G

    Double exp area

    local top_left = {x = 1000, y = 1000, z = 7} local bottom_right = {x = 1000, y = 1000, z = 7} local double_exp_area = top_left, bottom_right local has_double_exp = 99918 --storage function onStepIn(cid, item, itemEx, fromPosition, toPosition) if getPlayerStorageValue(cid, has_double_exp) < 1...
  20. G

    [Help] I need these three scripts. [Help]

    third script local can_tp_pos = { [1] = {x = 1000, y = 1000, z = 7} } local teleport_pos = { [1] = {x = 1000, y = 1000, z = 7} } local town_names = { [town1] } function onSay(cid, words, param, channel) if (param == "") then doPlayerSendCancel(cid, "Command requires param.") end t =...
Back
Top