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

    Lua Change the GREET message "on the fly"

    You can have the NPC set one of the players storage values to something when they talk to them the first time, and have it check for the storage value when he comes back, if its changed then display the second message. Hope it helped. -MyndGamez
  2. myndgames

    Windows Preset outfits for groups > 1

    Hello everyone! I am trying to make a tutor class for my server and I ran into a little snag. I created the group and moved all of the other groups up by 1 id. Gods = 4, GM = 3, Tutor = 2, Player = 1. Unfortunalty when I get the player to be a tutor they have the preset GM outfit. Is there...
  3. myndgames

    Talabec [The Lost Lands]

    I liked it a lot. Id give you a 8.5/10. Keep up the good work! On a side note. Not all other servers out there are 1000x.. There are a good amount of servers that have low exp that want to have the RPG aspect. Such as! MyndGamez! 8x exp, Real Tibia map with extra custom islands. ip: MyndGamez.com
  4. myndgames

    Windows Gamemasters and Gods not on VIP

    @Sharp - The MyndGamez Staff likes talking to the players, even if some of them are annoying. @Archez I used the play flag generator, but it did not seem to have any effect. Thanks in advance -MyndGamez
  5. myndgames

    Windows Gamemasters and Gods not on VIP

    None of my players can add the staff to their VIP list. Does anyone know how to fix that so they can? I am using TFS 2.22. Thanks in advance. -MyndGamez
  6. myndgames

    [8.4]Problem with spells ;S

    I had that problem as well. The issue is that when it tries to set those local values, it has no idea who cid is. I fixed that by moving them down into the oncast function. Doing that fixed the player not found error but then gave me another error saying that I cannot do any arithmetic on the...
  7. myndgames

    "real tibia svargrond arena" by Gesior

    Try to put the arena in your server as it is right now, and report back to me the errors that you get. I will then help you fix them :)
  8. myndgames

    NPC [Advanced]NPC Talk

    To make the NPC's talk in the regular channel go into your data\npc\lib\npcsystem And change NPCHANDLER_CONVBEHAVIOR = CONVERSATION_PRIVATE to NPCHANDLER_CONVBEHAVIOR = CONVERSATION_DEFAULT in both npchandler.lua and npcsystem.lua
  9. myndgames

    "real tibia svargrond arena" by Gesior

    It works but you have to mess with it a little to get it to work.
  10. myndgames

    Npc Chat System

    Still need assistance on this..Thanks :)
  11. myndgames

    Npc Chat System

    Hello everyone! I am having difficulty getting the NPC's to talk in their window. I have searched around and tried everything I can think of. I tried setting this in the npc/lib/npcsystem/npchandler.lua NPCHANDLER_CONVBEHAVIOR = CONVERSATION_PRIVATE And that did not work. Here is an...
  12. myndgames

    Help me with multiplier

    Do you mean the multiplier in the Config.lua does not work? Or do you mean in the Stages.xml. Which one are you using.. ?
  13. myndgames

    TalkAction Event System ;D

    I changed it around so you no longer have to set the position manually. It will automatically set the event position to your current position. function onSay(cid, words, param) local posx = getGlobalStorageValue(75001) local posy = getGlobalStorageValue(75002) local posz =...
  14. myndgames

    Action Lotery ticket Script!

    function onUse(cid, item, fromPosition, itemEx, toPosition) local rand = math.random(0, 10) local lotteryid = 5957 if item.itemid == lotteryid then if rand < 1 then doCreatureSay(cid, "You have a winning lottery ticket!", TALKTYPE_ORANGE_1) doTransformItem(item.uid...
  15. myndgames

    Action Rusty Legs and Armor.

    Then use this script ------------------------------------------------- -------------------CONFIGURE----------------------- ------------------------------------------------- local config = { rustyarmorid = 2160, rustylegsid = 2148, rustyremoveid = 5865 }...
  16. myndgames

    UNNAMED acc. maker 0.3.2 beta for TFS

    Still Trying to figure this out.. Still looking for help on this matter..
  17. myndgames

    TalkAction Set player vocation to ...

    How does it handle magic levels? What if you change a Sorc to a Pally.. Would the pally have like mg level 30?
  18. myndgames

    "real tibia svargrond arena" by Gesior

    Myself like many others have had this error, Lua Script Error: [MoveEvents Interface] data/movements/scripts/arenaroom.lua:onStepIn luaGetThingPos(). Thing not found Lua Script Error: [MoveEvents Interface] data/movements/scripts/arenaroom.lua:onStepIn uaDoSummonCreature(). Can...
  19. myndgames

    UNNAMED acc. maker 0.3.2 beta for TFS

    Still looking for help with my errors... http://otland.net/f118/unnamed-acc-maker-0-3-2-beta-forgotten-server-12954/index46.html#post181247
  20. myndgames

    annihilator - Help

    The code you have there should work fine, its the exact same code I am using in my server. This code does not prevent you from doing the Anni multiple times due to the fact that no there in the code does it change the players 7000 storage ID. Also, the chests are not part of this code. You...
Back
Top Bottom