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

    TFS 1.X+ Server Running, but can't enter in game

    @Lucius0101 you want to connect from other device to server? if yes then change 127.0.0.1 in config.lua to your local network address e.g. 192.168.0.104 127.0.0.1 or so called localhost as it name say is local so it can't be external
  2. GhostWD

    [fmAAC] Thora template

    @Bogart I can say that present spaces between that elements are okay for me :P but I'm sure you can change it on your own :)
  3. GhostWD

    [fmAAC] Thora template

    Thank you @Pedrook here is link to repo with template Gh05t-PL/thora-fmaac-template it's better to use this one cause it's up to date
  4. GhostWD

    [fmAAC] Thora template

    Hello otlanders! I come to you with new design to FlatMannerAAC (which comes with new commit) . . . Thora layout from here (lil green here was made by recording software) INSTALLATION GUIDE 1. extract file to main folder of fmAAC 2. in src/utils/configs.php and set 'template' to "thora" 3...
  5. GhostWD

    Change mount looktype talkaction

    20. playerOutfit.lookMount = lookMount to 20. playerOutfit.lookMount = lookType ?
  6. GhostWD

    NPC TP

    you need random number generation and use if elseif or switch or (arrays and indexes) to check where to teleport this thing something like local places = { {x=123,y=321,z=7}, {x=321,y=123,z=7}, {x=213,y=312,z=8} } -- array of possible places local placeId = math.random(1,#places); --...
  7. GhostWD

    Error while loading spawns/houses in RME

    Because you are loading spawn file as npc/monster try to load monsters and npcs from data folder
  8. GhostWD

    Spells.xml [TFS1.2]

    im not sure but try maybe <instant group="healing" name="Intense Healing" words="exura gran;exura vita" lvl="20" mana="70" aggressive="0" selftarget="1" cooldown="1000" groupcooldown="1000" needlearn="0" script="healing/intense_healing.lua"> <vocation name="Sorcerer" />...
  9. GhostWD

    TFS 1.X+ EXP GAIN RATE

    have you edited something?
  10. GhostWD

    TFS 0.X tfs 0.4 help with lua

    try this local config = { fromPos = {x=999,y=998,z=7}, toPos = {x=1005,y=1003,z=7}, } local function pzAutoLeveler(cid, counter) if isPlayer(cid) then if getTilePzInfo(getPlayerPosition(cid)) == false and not isInRange(getThingPos(cid), config.fromPos, config.toPos) then...
  11. GhostWD

    TFS 0.X chaosbangle (id 2127) crash

    so it's server source related thing (C++) this is bug of handling moveevents i'm not into this so i can't say exactly what and it would be hard to repair i think you have my solution, make this item in bag if it's obtainable from quest chest or item shop if you only spawn it on admin character...
  12. GhostWD

    TFS 0.X tfs 0.4 help with lua

    @bolo123 put your code inside "\[code\]\[/code\]" (without "\") like [ code] somecode [/ code] this will help someone to read code
  13. GhostWD

    TFS 0.X chaosbangle (id 2127) crash

    k thx but try my solution
  14. GhostWD

    TFS 0.X chaosbangle (id 2127) crash

    hmm maybe because of some source related things with moveevents like i had with helmet which makes player exp rate higher(+20%) and when i used "/i exp helmet"(or player used quest chest with this item) and had free head slot then server was crashing. my solution was to give this item in bag...
  15. GhostWD

    TFS 0.X tfs 0.4 help with lua

    [How-to] Using addEvent() Good tutorial by Evan
  16. GhostWD

    TFS 0.X Can't login into character (Display only list)

    ufs disabled haven't tried to change ports but netstat shows some um... differences between otserv0.6.4 and tfs0.4 otserv tcp 0 0 0.0.0.0:7171 0.0.0.0:* LISTEN 11194/otserv tcp 0 0 0.0.0.0:7172 0.0.0.0:* LISTEN...
  17. GhostWD

    TFS 0.X Can't login into character (Display only list)

    last *BUMP* and I'll let it go :C @reminder Other distro[this] is working corectly by this I mean I can login to account and play on any character using global ip On my edited sources and "vanilla" fir3element sources I can't login to server using global ip
  18. GhostWD

    Lua distance effect at position

    event.lua function onThink(interval, lastExecution) local position = {x=1000,y=998,z=7} local fromPos = { {x=999,y=998,z=7}, {x=1001,y=998,z=7}, {x=999,y=999,z=7}, {x=1000,y=999,z=7}, {x=1001,y=999,z=7}, {x=999,y=997,z=7}...
  19. GhostWD

    Lua distance effect at position

    every ten seconds for all players? and effect to inside or to outside
  20. GhostWD

    Lua distance effect at position

    You mean on death or what? Be more specific
Back
Top