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

    AAC link page to other sub-pages

    I'm trying to make it so that when someone clicks on the monster, the page loads a subpage that is located in a folder. How can I do that? echo '<a href="?creature=' . $monsterName . '">'; In this case, I will do it manually, monster by monster. Does anyone know how to make it so that when...
  2. bpm91

    AAC Page Premium features / Itens

    Does anyone have one of these two pages available to use in myaac?
  3. bpm91

    TFS 1.X+ Error Npc - Check task

    npc is not really my strong point, so if I say hi> task> Rotworms>Cancel, without having any task activated, I get this error. how to fix it? Does anyone have a direction? tfs 1.5 7.72 Lua Script Error: [Npc interface] data/npc/scripts/Robin.lua:onCreatureSay data/npc/scripts/Robin.lua:135...
  4. bpm91

    OTClient change soul points for speed

    solved: data>styles>40-inventory.otui
  5. bpm91

    OTClient change soul points for speed

    Could someone help me change the soul points level to the character's speed level? otcv8 - i use nekiro 1.5 7.72 downgrade 1722973312 Does anyone know where I can remove the name? I've looked in all the folders and can't find it. lol
  6. bpm91

    TFS 1.X+ Tile limit Battle list

    help to increase this limit in tfs and otcv8? It would be interesting to be able to have more than 10 for example
  7. bpm91

    TFS 1.X+ Tile limit Battle list

    I have this problem on my otcv8 battle 1722903379 https://otland.net/threads/stack-limited-on-battle.287252/
  8. bpm91

    Lua Don't allow GM to get items from quest chests. downgrade nekiro 1.5 7.72

    ty xikini work 100% blocked it for players too :/ 1722794224 function onUse(cid, item, frompos, item2, topos) local player = cid -- renaming cid here, because you're using ancient code, for whatever reason -- Verifica se o jogador é um GM if player:getAccountType() ==...
  9. bpm91

    Lua Don't allow GM to get items from quest chests. downgrade nekiro 1.5 7.72

    As the title says, any ideas on how I can make level 4 = gamemaster players unable to open the chest? function onUse(cid, item, frompos, item2, topos) if getPlayerStorageValue(cid,8088) == -1 then doPlayerAddItem(cid,2143,1) setPlayerStorageValue(cid,8088,1)...
  10. bpm91

    TFS 1.X+ Outfits to GM Downgrade Nekiro 1.5 7.72

    solved > game.cpp void Game::playerRequestOutfit(uint32_t playerId) { if (!g_config.getBoolean(ConfigManager::ALLOW_CHANGEOUTFIT)) { return; } Player* player = getPlayerByID(playerId); if (!player) { return; } // Verifica se o jogador é um Game Master...
  11. bpm91

    TFS 1.X+ lamps save house

    I was testing this script, I noticed that a lamp_state is created with the position and the item, would this not be a lag problem for a full server?I noticed that it notes the position and the item that was saved. If several players keep switching on and off, is there any chance of crash or lag?
  12. bpm91

    TFS 1.X+ Outfits to GM Downgrade Nekiro 1.5 7.72

    function Creature:onChangeOutfit(outfit) local player = Player(self) if player:getGroup():getAccess() and player:getAccountType() >= ACCOUNT_TYPE_GAMEMASTER then return false end if hasEventCallback(EVENT_CALLBACK_ONCHANGEMOUNT) then if not...
  13. bpm91

    TFS 1.X+ Outfits to GM Downgrade Nekiro 1.5 7.72

    no work to me
  14. bpm91

    TFS 1.X+ Outfits to GM Downgrade Nekiro 1.5 7.72

    In this case I would like GM's not to be able to change clothes other than what he has. it should only have the gm outfit option 1722729405 i found this on events/scripts Could you edit directly here, if the player is a gamemaster, can't he change clothes, for example?
  15. bpm91

    TFS 1.X+ Outfits to GM Downgrade Nekiro 1.5 7.72

    Does anyone have any ideas on how I can make the gm character not have access to normal outfits. Just the GM outfit?
  16. bpm91

    Function fusion 7.6 - 11+.

    I did this on my server. I took everything I thought was good from the versions and implemented it. server offline for now. web completion
  17. bpm91

    iGlobal - Sprites Gallery

    perfect
  18. bpm91

    OTClient Multi world system otcv8

    I want one that is tibia style, retrocores, mastercores, where you can create the world you want and all the worlds appear in the client
  19. bpm91

    OTClient Multi world system otcv8

    ty oldies
  20. bpm91

    OTClient Multi world system otcv8

    thanks for explaining
Back
Top