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

    reborn sistem

    is there a respawn system without compiling sources? (rebirth)
  2. Gubailovo

    sound mod

    Is it possible to remove looping music? that is, to play it only once. SOUNDS_CONFIG = { soundChannel = SoundChannels.Music, checkInterval = 500, folder = 'music/', noSound = 'No sound file for this area.', } SOUNDS = { -- Rook Cave {fromPos = {x=1113, y=1225, z=5}...
  3. Gubailovo

    OTCV8 how to add extra exp bar below mana

    \modules\game_healthinfo healthinfo.otui
  4. Gubailovo

    [Brazil] [11.00 / Custom] MegaGlobal

    A thief who steals from a thief does not cease to be a thief! who needs bloodstone sprites?
  5. Gubailovo

    Missions NPC

    Tell me please. how to choose only one mission? if (string.find(msg, '(%a*)квес(%a*)') or string.find(msg, '(%a*)задан(%a*)') or string.find(msg, '(%a*)мисси(%a*)')) and (cid == focus) then if getCurrentMission(cid)==0 then missionid = getMission(Level)...
  6. Gubailovo

    weapon script

    alas it is not so 1639238120 he is very very very custom
  7. Gubailovo

    weapon script

    I can not find out the version of TFS (https://otland.net/threads/i-can-not-find-out-the-version-of-tfs.268559/#post-2593723) this is a very custom server
  8. Gubailovo

    weapon script

    I need a script for a weapon. For example, I use the weapon ID 1111. After I apply 1000 gifts with this weapon, it will turn into the object ID 2222. Thanks
  9. Gubailovo

    [Error - IOLoginData::loadPlayer] Player has Town ID 8 which doesn't exist

    [7.7] RealOTS 7.7 Cipsoft files (virgin) (https://otland.net/threads/7-7-realots-7-7-cipsoft-files-virgin.244562/)
  10. Gubailovo

    doCreateItem

    it looks like this? function onUse(cid, item, frompos, item2, topos) gatepos = {x=3927, y=3669, z=7, stackpos=1} getgate = getThingfromPos(gatepos) if item.uid == 1144 and item.itemid == 8628 and getgate.itemid == 0 then doCreateItem(1284,1,gatepos) doCreateItem(8668,1,gatepos)...
  11. Gubailovo

    doCreateItem

    I have a script for creating an item in position function onUse(cid, item, frompos, item2, topos) gatepos = {x=3927, y=3669, z=7, stackpos=1} getgate = getThingfromPos(gatepos) if item.uid == 1144 and item.itemid == 8628 and getgate.itemid == 0 then doCreateItem(1284,1,gatepos)...
  12. Gubailovo

    function onStepIn

    it doesn't work, but thanks anyway for the quick answer. Some functions arvographically differ on my server. My script worked correctly. I just went beyond the border of the map thanks for the answer
  13. Gubailovo

    function onStepIn

    I do not need the launch of the raid. I'm only interested in the teleport
  14. Gubailovo

    function onStepIn

    as an example. when I step on a tile, a raid is launched according to the character level in a certain position. function onWalkIn(cid, item, pos) if(getPlayerStorageValue(cid, 2005) == 1) then return 1 end level = getPlayerLevel(cid) if (level >= 8) and...
  15. Gubailovo

    function onStepIn

    I do not use movements.xml
  16. Gubailovo

    function onStepIn

    how do i add a function onStepIn? I don't have it on the server, so I use function onWalkIn. but for the teleport it does not work correctly or I am using the wrong script function onWalkIn(cid, item, frompos, item2, topos) playerpos = getPlayerPosition(cid) novapos = {x=4016, y=3912, z=7} if...
  17. Gubailovo

    developing weapon

    I need weapons that increase their level with the number of hits. I have an example of a staff. But it works the other way around. After applying a certain number of hits, it disappears. \data\actions\lib\actions function removeCharge(cid, itemuid) charge = itemUseCharge(itemuid) --...
  18. Gubailovo

    [How to] Map live

Back
Top