• 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!

Recent content by _Aion_

  1. _Aion_

    Solved Get ItemName

    Solved.
  2. _Aion_

    OTClient oufit on module

    Hello, I'm trying to modify a module in which it adds an image in a certain location. However, I want to change to setOutfit, to get the creature's ID. The ID is being sent perfectly, I've already tested it using print, but I don't know how to do this conversion. If you could give me some...
  3. _Aion_

    OTClient Show Manabar to All

    With this function my mana is replicated to everyone around me, whether player or monster
  4. _Aion_

    OTClient Show Manabar to All

    I'm trying to implement g_game.enableFeature(GameCreaturesMana), I've already done the packet part, but I believe it needs something in the OTC. If I change from (IsLocalPlayer) to Player, it works, but it's just visual, my mana is mirrored to whoever is on the map. Does anyone know how to solve...
  5. _Aion_

    TFS 0.X Find item on ground

    I understood hahaha but I was wondering if this will lag the server with too many players running this script
  6. _Aion_

    TFS 0.X Find item on ground

    Checking position by position with for i have success too your script 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item 14:40 Don't find item...
  7. _Aion_

    TFS 0.X Find item on ground

    search item in position(area) and send player item's position
  8. _Aion_

    TFS 0.X Find item on ground

    Hello, I'm trying to make a script that, the player will be alerted of the position of the item next to him. This is my code function onSay(cid, words, param, channel) local area = { {{x=994,y=1003,z=7}, {x=1007,y=1008,z=7}}, } for _, var in ipairs(area) do if...
  9. _Aion_

    TFS 0.X Create Item Bug

    Solution: Find this if(id > 20000 && id < 20100) { id -= 20000; ItemType* iType = new ItemType(); iType->id = id; items.addElement(iType, iType->id); } And this if(serverId > 20000 && serverId < 20100)...
  10. _Aion_

    TFS 0.X Create Item Bug

    Hello. Someone know how solve one problem? BUG: If i try make item by /i name show this error Item with such name does not exists. But this item are registered in item.xml like this <item id="20759" article="a" name="Fragmento Desconhecido" plural="Fragmentos Desconhecidos">...
  11. _Aion_

    DB in one host and server in another.

    MySQL Remote does this. Search on google: acess mysql remote + your OS
  12. _Aion_

    OTClient Error on setBackGround

    Hello. I'm having this error on otclient console stack traceback: [builtin#146]: at 0x011ba470 [C]: in function 'setBackgroundColor' /modules/poke_bar/pokebar.lua:118: in function 'receive' /modules/poke_bar/pokebar.lua:46: in function </modules/poke_bar/pokebar.lua:25> ERROR...
  13. _Aion_

    OTClient Shop Module

    Fixed. I changed ShopTabBarVertical to TabBarVertical And worked perfeclty. Thanks All.
  14. _Aion_

    OTClient Shop Module

    Same error. FATAL ERROR: Unable to load module 'game_shop': /modules/game_shop/shop.lua:151: attempt to index global 'shopWindow' (a nil value) stack traceback: [C]: in function '__index' /modules/game_shop/shop.lua:151: in function 'init'...
  15. _Aion_

    OTClient Shop Module

    It was like that in the original script, still giving the same error and others about "verticalTab" ERROR: failed to load UI from 'shop.otui': 'ShopTabBarVertical' is not a defined style FATAL ERROR: Unable to load module 'game_shop': /modules/game_shop/shop.lua:152: attempt to index global...
Back
Top