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

  1. F

    TFS 1.X+ Boss

    Yeah, that's what you wanna do. BEFORE the addEvent is started -> check if globalStorageValue ~= 1 (not equal 1) -> then start Event and set globalStorageValue to 1 But for that you need to know, where the boss spawning event is called.
  2. F

    Lua Npc sell exercise weapons

    Do you have any script, thats already adds an item to the store inbox, so I can see how this is handeled in your distro?
  3. F

    TFS 1.X+ Boss

    From that scripts it seems that neither deathstrike, nor gnomevil can spawn more than once. So are all bosses spawning multiple times, or only abyssador?
  4. F

    TFS 1.X+ Cannot give Achievements to players

    Yeah, better work strange than not at all. But you can check if it works, when you copy the text from the lib and paste it into the script. Also check that both files have the same coding on UTF-8 or ANSI or whateever.
  5. F

    TFS 1.X+ Boss

    Well, the first script is kinda just a lib for all warzones but doesn't execute anything on its own. If you are using notepad++ you can press CTRL+Shift+F to open the search in files window. You then search for "spawnBoss" and pick the /data folder of your server and check, where this is executed
  6. F

    Lua NPC Guide understanding more than one word

    Strange, there should be no function, that can create a loop. Has the script loaded without any errors?
  7. F

    TFS 1.X+ Cannot give Achievements to players

    So either something is wrong with "player" you calling in that second script, or his storage 300069 and 300012 are already 1 or higher. Have you tried changing the name "Razing!" for 69 and see if it works with id instead of name?
  8. F

    TFS 1.X+ Boss

    I am confused. There is this line, that spawns the boss, but it is nowhere executed.
  9. F

    TFS 1.X+ Boss

    This is neither a move script, nor an action script, so those functions are getting triggered somewhere else. Send the other script (probably movement on the teleporter) as well.
  10. F

    TFS 1.X+ Cannot give Achievements to players

    Then post the 2 lines, that contain the achievements and maybe the script, that wants to add the achievement. Maybe there is something wrong with "player".
  11. F

    Lua NPC Guide understanding more than one word

    Haven't tested, so not sure if it works like that, but try this function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg)...
  12. F

    TFS 1.X+ Cannot give Achievements to players

    If you are using this lib there is never an achievement with the name "Razing!", nor is there "A Total Nightmare". You need to add them to the list before you can give them to a player.
  13. F

    Lua Remove (boss) monster after time x

    Thanks a lot for pointing that out man! This helped me so much! I actually thought I tested this but turns out, I didn't. That's all I need. Thank you so much Also props for writing the whole script, that would not have been necessary but is greatly appreciated.
  14. F

    Lua Remove (boss) monster after time x

    TFS 1.3 (OTBR) I wanna add a function that boss monsters (rare spawning creatures like undead cavebear, midnight panther, etc.) only life for like 3h and get removed after that time has passed. The problem is, I don't know how I can set a starting point for the timer, since monsters that appear...
  15. F

    TFS 1.X+ TFS 1.3 - Poison Fields seems to be buggy.

    Damage is either set from items.xml or a movement script. Check those for the itemid of the poison field
Back
Top