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

    TFS 0.X Order MC command

    here too :) ty @Roddet
  2. gmstrikker

    TFS 0.X Order MC command

    https://github.com/Fir3element/3777/blob/master/data/talkactions/scripts/multicheck.lua no, i just want to see who is using MCs, witch chars in a organized way there are a few sources changes here on forum to fix the problem u mention bump bump bump
  3. gmstrikker

    TFS 0.X Order MC command

    [21:34:32.326] [Error - TalkAction Interface] [21:34:32.326] data/talkactions/scripts/multicheck.lua:onSay [21:34:32.326] Description: [21:34:32.326] data/talkactions/scripts/multicheck.lua:65: table index is nil [21:34:32.326] stack traceback: [21:34:32.326]...
  4. gmstrikker

    TFS 0.X Order MC command

    [20:31:27.199] [Error - TalkAction Interface] [20:31:27.199] data/talkactions/scripts/multicheck.lua:onSay [20:31:27.199] Description: [20:31:27.199] data/lib/012-table.lua:17: bad argument #1 to 'pairs' (table expected, got number) [20:31:27.199] stack traceback: [20:31:27.199] [C]: in...
  5. gmstrikker

    TFS 0.X Order MC command

    This is a ordened mc list? The default is sucks :( I couldnt use that, should i use /mc with something else?
  6. gmstrikker

    TFS 0.X Order MC command

    How to order /mc command? (the default that comes on tfs) This command that show players with MCs, but it is a mess It shows something like: 20:50 Currently online players with same IP address(es): 20:50 Jizz Draco (XXX.XXX.XXX.XXX) 20:50 Ygorxx (YYYY.YYYY.YYYY.YYYY) 20:50 Diegothais...
  7. gmstrikker

    TFS 0.X Add 3 skills

    Thank you guys @Elgenady and @Evil Puncker !
  8. gmstrikker

    TFS 0.X Add 3 skills

    What i'm doing wrong here: local ml_add = 0 if (getPlayerMagLevel(cid) >= 1 and getPlayerMagLevel(cid) <= 40 ) then ml_add = 3 elseif (getPlayerMagLevel(cid) >= 41 and getPlayerMagLevel(cid) <= 50 ) then...
  9. gmstrikker

    TFS 0.X Add 3 skills

    edit, working on
  10. gmstrikker

    TFS 0.X Add 3 skills

    This +1 is the amount? I tried to put +3 and just add one skill... -- What about ML, what is the formula?
  11. gmstrikker

    TFS 0.X Add 3 skills

    Imagine if i have skill 59, 1% to 60... this 1% will count as one :/ And if i want to add 0.5? I think i should need doPlayerAddSkillTry, i'm wrong?
  12. gmstrikker

    TFS 0.X Add 3 skills

    Is it possible to do doPlayerAddSkillTry(cid, SKILL_DISTANCE, XXX) And this XXX is the am mount needed for 2,3,5 skills or how many i decide?
  13. gmstrikker

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    WOOOOORKS!!!! thank you! there are people with the same problem in the other forum... i gonna post there with your credits! ty
  14. gmstrikker

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    If you set each column guild_id manually on table players to each player, yes everything else works That is what that trigger should do
  15. gmstrikker

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    This is the way to check? mysql --version mysql Ver 15.1 Distrib 10.1.48-MariaDB, for debian-linux-gnu (x86_64) using readline 5.
  16. gmstrikker

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    No, there is the trigger stuff left Table players is not updating the column guild_id with the players guild
  17. gmstrikker

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    I got this error: MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '$$ CREATE TRIGGER guilds_update BEFORE UPDATE ON players FOR EACH ROW BEGI' at line 1 (there are some guys with the...
  18. gmstrikker

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    Wow i can see the trigger there ;) What are u mean "They shouldn't be there"? U mean triggers are not the way? Or u mean this is bad? How the column guild_id in players should change? There is only it left :(
  19. gmstrikker

    TFS 0.X Guild System (guild task,bank) - two SQL problems

    hmmmm then it is a checker for when players join a guild add guild_id on players table... the query runs fine, but when someone try to join a guild: string(48) "UPDATE `players` SET `rank_id`='6' WHERE `id`=14" (query - SQL error) Type: voidQuery (voidQuery is used for update, insert or...
Back
Top