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

    [Request] Text Up With full EQ

    Example just put this in global events! local t = { -- words,helmet,armor,legs,boots,effect -- {"Leather", 2482, 2484, 2468, 2526, 29}, {"Chain", 2457, 2463, 2647, 2521, 30}, } function onThink(interval) for _, cid in ipairs(getPlayersOnline()) do for i = 1, #t do if...
  2. RosOT

    [Request] Text Up With full EQ

    @tanii Here is an example of what i did with the ideas we provided you with i am not just going to give this to you but its another idea and an example of what has been done. local IDHEAD = 2461 local IDARMOR = 2467 local IDLEGS = 2649 local IDFEET = 2643 local THETEXT = "*Leather*" function...
  3. RosOT

    Open Tibia Port

    24 hours to bump~ first post - el-king, 24 minutes ago Report second post - el-king, 2 minutes ago Report
  4. RosOT

    A legit custom server?

    Not many people played it but i like Terra Silent xD not sure if anyone here would know what ot that was only ever seen a few players on it was a mid/high rate rpg / custom server was unique in its own way i enjoyed it and would play it again haha
  5. RosOT

    A legit custom server?

    Tired as shit read this total wrong anyways if i find forsaken server files ill message you @Zasranets
  6. RosOT

    A legit custom server?

    Forsaken grounds ehh i just might still have a copy of it lemme look :)
  7. RosOT

    [Request] Text Up With full EQ

    just add 10 ml to that item in items.xml then when it is on you get that ml Example <item id="2423" article="a" name="Test Wand"> <attribute key="weight" value="5800" /> <attribute key="weaponType" value="wand" /> <attribute key="range" value="5" /> <attribute...
  8. RosOT

    [Request] Text Up With full EQ

    So add an ondequip simple :S function onDeEquip(cid, item, slot) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You removed one of the items.") end not saying it will work either just idea's local IDHEAD = PUT ITEM ID local IDARMOR = PUT ITEM ID local IDLEGS = PUT ITEM ID local THETEXT =...
  9. RosOT

    Solved add points on gesior

    Now look that shit over and realize what was done and how easy it was and it was right in front of your face like 3 times :| when someone says or posts and example think of the obvious stuff cause its usually right there.
  10. RosOT

    Solved add points on gesior

    @1268995 if you cant figure this out you might have slight issues you need to work on go to the tutorials thread and read up on how to do certain stuff. local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS...
  11. RosOT

    Solved add points on gesior

    looks like a ticks? ticks = time local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, getConfigInfo('timeBetweenExActions')) getConfigInfo('timeBetweenExActions' I am going to bed soon so this is last thing im puting in here .. last...
  12. RosOT

    Solved add points on gesior

    Its not that they do much of a difference personally i would use the storage id one "his" due to it not using the healing exhaust. I just gave you an idea on what to do and you already have more then 10 of the same scripts in your server :) just blinded by words is all
  13. RosOT

    Solved add points on gesior

    But yours is more of what i wanted him to work for and your candy feeding him :p now hes not going to know the difference between the multiple exhausts you could use
  14. RosOT

    Solved add points on gesior

    But i can give you another example. Potion script. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)...
  15. RosOT

    Solved add points on gesior

    I gave you 98% of the whole thing you can finish the last 2% I'm sorry to be an anus about it but its the fact of life i gave you more then i was willing to give :p
  16. RosOT

    Solved add points on gesior

    For example on my server i used. Function -- Prestige Points -- function getPlayerPrestigeP(cid) local Info = db.getResult("SELECT `Prestige Points` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. " LIMIT 1") if Info:getID() ~= LUA_ERROR then local presp=...
  17. RosOT

    Solved add points on gesior

    Ok so you figured out how to alter that code i gave you.. Your solution. function getAccountPoints(cid) local res = db.getResult('select `premium_points` from accounts where name = \''..getPlayerAccount(cid)..'\'') if(res:getID() == -1) then return false end local ret =...
  18. RosOT

    Solved add points on gesior

    Example figure it out :) lets see if you can. function getPlayerPassword(cid) local AccInfo = db.getResult("SELECT `password` FROM `accounts` WHERE `id` = " .. getPlayerAccountId(cid) .. " LIMIT 1") local AccPass = AccInfo:getDataString("password") return AccPass end
  19. RosOT

    Solved add points on gesior

    Don't tell me show yourself the issue and research the problem and work with it to figure out how stuff works so you can make your own stuff without major help on it.
  20. RosOT

    Solved add points on gesior

    Ugh im busy right now you figured out that wont work with talk actions :) why cant you figure out the rest haha but here.. doPlayerRemoveItem(cid, 2157, 1)
Back
Top