• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. kaiquefb

    Lua BUG BROWSE FIELD TFS 1.0 - 10.77

    Exactly, this bug has already been fixed in version 1.1 I would fixes in my version 1.0. Anyone have a solution?
  2. kaiquefb

    Lua BUG BROWSE FIELD TFS 1.0 - 10.77

    Hello, I spent my source 1.0 to 10.77 version and now I have a bug browse field. You open and can walk up to 3 or 4 sqm aside and browse the field is still open. However not to pick up the items is just open. is there any solution for this? Photos. Thank you.
  3. kaiquefb

    Lua BUG SHARED EXP TFS 1.0

    @Edit Friend, I worked gave a series of errors, I believe my source are different. My source void Player::gainExperience(uint64_t gainExp) { if (!hasFlag(PlayerFlag_NotGainExperience) && gainExp > 0) { if (staminaMinutes == 0) { return; } uint64_t...
  4. kaiquefb

    Lua BUG SHARED EXP TFS 1.0

    Hello, I have a bug, I think everyone TFS 1.0 has this error. Works as follows. I have 3 or more character invito all in party with SHARED EXP. and I follow each other, put 2 character just giving healing spells, (exura or exura ico). and only 1 char I kill monsters. 2 character who are not...
  5. kaiquefb

    Solved ERROR MOVEMENTS Gravedigger Quest

    Nice, tank u
  6. kaiquefb

    Solved ERROR MOVEMENTS Gravedigger Quest

    Hello, I use TFS 1.0 in version 10.76 I have an error in my console at some point in the quest graveddiger. Lua Script Error: [MoveEvents Interface] data/movements/scripts/gravedigger quest/necro.lua:onStepIn data/movements/scripts/gravedigger quest/necro.lua:4: attempt to index local 'player'...
  7. kaiquefb

    Solved ERROR CREATURESCRIPTS Elemental Spheres Quest

    Hello, I use TFS 1.0 in version 10.76 I have an error in my console when a player dies. Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/elemental spheres quest/the_elemental_spheres.lua:onDeath ...cripts/elemental spheres quest/the_elemental_spheres.lua:14: attempt to...
  8. kaiquefb

    Lua COMMAND /MUTE FOR TUTORES

    someone could help me? I'm looking for the day and do not think a solution. 1º help.lua Channels ( With this script, I could do! Mute! Unmute work, only that no longer has the exhaust in the channel. ) local CHANNEL_HELP = 7 local muted = Condition(CONDITION_CHANNELMUTEDTICKS...
  9. kaiquefb

    Lua COMMAND /MUTE FOR TUTORES

    groups.xml <?xml version="1.0" encoding="UTF-8"?> <groups> <group id="1" name="Player" flags="0" access="0" maxdepotitems="0" maxvipentries="0" /> <group id="2" name="Gamemaster" flags="137438953471" access="1" maxdepotitems="0" maxvipentries="200" /> <group id="3"...
  10. kaiquefb

    Lua COMMAND /MUTE FOR TUTORES

    Hello friends, Use TFS 1.0 and would like to enable the mute command to my tutors. The command is working for GM and GOD. How do I TOGGLE the tutors? mute.lua function onSay(cid, words, param) local player = Player(cid) local target = Player(param) if target == nil then...
  11. kaiquefb

    Lua STAMINA/SHARED EXP BUG

    what?
  12. kaiquefb

    Lua STAMINA/SHARED EXP BUG

    could someone help me?
  13. kaiquefb

    Lua STAMINA/SHARED EXP BUG

    Hello friends, I have a problem. When you are in shared exp with any player, and does not attack the monster is just using a real magic (exura gran, exura ico, sio) you also get exp and the problem is that STAMINA does not decrease. I have some player doing this are in exp shared, place follow...
  14. kaiquefb

    Lua EXP BONUS

    tank you. I changed the line below and it worked. if (applyStaminaChange && g_config.getBoolean(ConfigManager::STAMINA_SYSTEM)) { if (staminaMinutes > 2400) { if (isPremium()) { exp *= 1.5;
  15. kaiquefb

    Lua EXP BONUS

    Hello friends, I have a doubt, I wonder where is the file to change the 2 hours of bonus exp. (Green Stamina) The correct is to give 50% xp bonus. I would like to change, most do not think the correct location. TFS 1.0
  16. kaiquefb

    Linux [GESIOR-BUG] Broken Buttons

    I do not remember having changed anything, just not this longer working.
  17. kaiquefb

    Linux [GESIOR-BUG] Broken Buttons

    I have problems in some pages of my website-Gesior. Already changed the page with several files from other "Gesior" did not work. And the most interesting was that was running normal. See the image below, I can not click the submit button. In this other image, I also can not click the...
  18. kaiquefb

    TFS 1.0 shared exp.

    HELP
  19. kaiquefb

    TFS 1.0 shared exp.

    Cyc = 150 exp experience * 1.10 5 player in party, how many exp, each player will receive? void Party::shareExperience(uint64_t experience) { uint32_t shareExperience = (uint64_t)std::ceil((((double)experience / (memberList.size() + 1)) + ((double)experience * 1.10))); for (Player*...
Back
Top