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

    [TFS 1.2] [Spells] How to call spell effect multiple times

    Remove word local before word function and try again. Double check if I made a typo in code. Anyway check your source files, in Linux machine grep -R CALLBACK_PARAM_TARGETTILE _source_directory ## EDIT I use CALLBACK_PARAM_TARGETTILE in TFS 1.2
  2. hellboy

    [TFS 1.2] [Spells] How to call spell effect multiple times

    I guess now I understand You. You should take a look at CALLBACK_PARAM_TARGETTILE, Not tested. It should look like this local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE) local area = { {0, 0, 0, 0, 0, 0, 0}, {0, 0, 1, 1, 1, 0, 0}, {0, 0, 1, 1, 1, 0, 0}, {0...
  3. hellboy

    [TFS 1.2] [Spells] How to call spell effect multiple times

    Try create combat2 and combat3 (with no damage, but only effect) and execute them it his way. combat:execute(creature, variant) combat2:execute(creature, variant) combat3:execute(creature, variant) return true
  4. hellboy

    [TFS 1.2] [Spells] How to call spell effect multiple times

    Just send more effects after 1/4 sec and 1/2
  5. hellboy

    OTClient [TFS 1.x] Can't login into TFS 1.2

    As you can see in attached files, I wrote local network ip 192.168.56.101 As you can see in VirtualBox network configuration and in ip addr command output it's the only one way to connect VM with host.
  6. hellboy

    [TFS 1.2] [Spells] How to call spell effect multiple times

    [How-to] Using addEvent() How To make Spell Who hit 3 times in row
  7. hellboy

    TFS 0.X Area Spell hitting specific creature

    Thanks for sharing answer with community :)
  8. hellboy

    TFS 0.X Area Spell hitting specific creature

    I don't know how about 0.x, but in 1.x you have CALLBACK_PARAM_TARGETTILE and CALLBACK_PARAM_TARGETCREATURE in spells. Example in 1.3 with mass healing and healing only players. otland/forgottenserver
  9. hellboy

    OTClient [TFS 1.x] Can't login into TFS 1.2

    Any advice? I edited first post.
  10. hellboy

    OTClient [TFS 1.x] Can't login into TFS 1.2

    OTClient connect to TFS 1.2 and login into character list, so I don't see any point of making ping. OTClient clearly see TFS on port 7171 (login port), but I don't know if it can connect to port 7172 (game port).
  11. hellboy

    OTClient [TFS 1.x] Can't login into TFS 1.2

    Hello. I can't login into TFS 1.2 inside VirtualBox. Details: * VirtualBox have 2 network interfaces (one NAT and one hostonly) * In VirtualBox I use Ubuntu 18.04 * Inside Ubuntu UFW is disabled * TFS 1.2 console don't show any errors * OTClient build 0.6.6, Rev 0 (df422c0) * OTClient...
  12. hellboy

    When TFS 1.3 will be released?

    Ok so there is no simple answer like: "It's planned to january 2019". I can't wait to set up monit with bash script and some cron jobs, to use POSIX signal handling and automate some tasks. Anyway as I can see rewrite most of scripts should be painless from 1.2 to 1.3.
  13. hellboy

    When TFS 1.3 will be released?

    Anyone know anything?
  14. hellboy

    When TFS 1.3 will be released?

    When TFS 1.3 will be released? As I can see it completed most milestones to 1.3 ( otland/forgottenserver ) And I don't see there any information about Roadmap for TFS 1.3. I see only this: otland/forgottenserver
  15. hellboy

    NPC [TFS 1.3] Bank NPC

    Ok, so it should work good :)
  16. hellboy

    Action [TFS 1.2] Exercise Weapons

    It's nice. Think about "early exit" in functions. There are more readable in that way. --- [...] local player = Player(pid) if player == nil then stopEvent(training) return true end local pos_n = player:getPosition() if start_pos:getDistance(pos_n) ~= 0 or not...
  17. hellboy

    NPC [TFS 1.3] Bank NPC

    This part could make a lot of troubles :) How? 1. Login as player A and player B 2. Transfer money from player A to player B 3. There is database UPDATE 4. Logout as player B 5. There is database uptade on player B row, that could overwrite changes 6. Money dissapear Rest functions look nice. I...
  18. hellboy

    request System Clan (Guild Advanced)

    Requests
  19. hellboy

    Npc require item and can access forever

    Ask here: Support
  20. hellboy

    [MOD] Pet system! tfs 0.3.7/0.3.6/0.4.0

    Use [ code ] ... [ /code ] for scripts.
Back
Top