• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. B

    C++ Crates - Everyone sees different

    And what about the effects? Can anyone see his own?
  2. B

    C++ Crates - Everyone sees different

    Is it possible for one person to see chests with id 1234 and the other 4321? If so can you guide how to do it?
  3. B

    Lua Countdown timer tfs 0.4

    for x = 0.1, 10 do local n = 10 - x addEvent(doSendAnimatedText, x * 1000, toPosition, n > 0 and tostring(n), TEXTCOLOR_WHITE) end Why does it subtract 1 and not 0.1?
  4. B

    Lua Cassino System

    Ty a lot! ;)
  5. B

    Lua Cassino System

    Thank you for your help. I created something. :P
  6. B

    Lua Cassino System

    I have no idea for that :cool: function onUse(cid, item, fromPosition, itemEx, toPosition) local items = {8982, 2002, 2001, 2005, 2640, 9928, 2160} local pos1 = {x = 1083, y = 1014, z = 7, stackpos=255} local pos2 = {x = 1084, y = 1014, z = 7, stackpos=255} local pos3 = {x = 1085, y = 1014, z =...
  7. B

    Lua Cassino System

    I would like to create such a system. Can anyone tell me how to get started? TFS 0.4
  8. B

    Lua [tfs 0.4] Copy item

    Ty a lot! Without the stackpos, it does not work. :P
  9. B

    Lua [tfs 0.4] Copy item

    How to copy item from position to position? I tried this way, but it does not work. local pos = {x = 1083, y = 1014, z = 7, stackpos=255} doCreateItem((getThingfromPos(pos).uid), 1, {x = 1084, y = 1014, z = 7}) Or: doCreateItem(getTileItemById(pos, (getThingfromPos(pos).uid)), 1, {x = 1084, y =...
  10. B

    Global Cast System

    @ BUMP
  11. B

    Display an array element

    Ty! One more question. How to display this array? local cfg = {items = {2342, 2354, 2564}}
  12. B

    Display an array element

    Ty, but it didn't work for: doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, items.reward.pos ..".") Error: attempt to concatenate field 'pos' (a table value)
  13. B

    Display an array element

    How to do to display an array element? function onUse(cid, item, frompos, item2, topos) local items = {["reward"] = {item = 1111, pos = {x=1000, y=1000, z=7}} doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "".. items[1] ..".") end
  14. B

    Creating Account

    Where can I find information on creating accounts? The point is to change the first letter to large. How to change it?
  15. B

    Very important - Rules change on otservlist.org

    Can anyone help with my problem? Please. My status.cpp = > [C++] //////////////////////////////////////////////////////////////////////// // Ope - Pastebin.com
  16. B

    C++ [0.4] No count more then 4 players on same IP (NEW otservlist.org rulles)

    @Nevski. I have a error(tfs 0.4). :( What am I doing wrong? My status.cpp: [C++] //////////////////////////////////////////////////////////////////////// // Ope - Pastebin.com
  17. B

    Admin Outfit Colours

    It is possible to change admin colours outfit?
  18. B

    Lua [TFS 0.4] Monster attack other monsters

    Here's code NPC who attack monster How do it for monster? local level = 10 ----- change this to make the npc hit more/less---------------------|damage_min = (level * 2 + maglevel * 3) * min_multiplier | local maglevel = 10 ----- change this to make the npc hit more/less...
  19. B

    [Show Off] BeastxHunter ~ fb.com/beastxhunter

    I like your style! <3
Back
Top