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

    Lua How Add/AUTO REBIRTH IS AUTOMATIC!

    The script i sent is not talkaction
  2. GamerGoiano

    Lua How Add/AUTO REBIRTH IS AUTOMATIC!

    So use the code I sent in your topic! It will check everytime the player advance level, if player reach level 1000+, will set player level 1 with hp and mana base + extra hp and mana.
  3. GamerGoiano

    Lua How Add/AUTO REBIRTH IS AUTOMATIC!

    Modify the player.lua to reset to level 1, everytime it reach 1000. local config = { heal = true, save = true, effect = false, save_exhaust_time = 10, -- in minutes hp_increase = 10, -- amount of max health increase on level up mp_increase = 10 -- amount of max mana increase on level up }...
  4. GamerGoiano

    Creating server for myself to play offline.

    You need: XAMPP (MySQL + Apache) (For Database and Website) Znote AAC (To use as website to create accounts) https://github.com/Znote/ZnoteAAC TFS (The Server.exe + Datapack) https://github.com/otland/forgottenserver OTCV8 or Otclient https://github.com/OTCv8/otclientv8...
  5. GamerGoiano

    RevScripts killuaCaveOwners/no back temple

    I will send two codes for u, try both please Version 1: Version 2:
  6. GamerGoiano

    Lua How Add/AUTO REBIRTH IS AUTOMATIC!

    Eu não consigo entender o que voce quer I can't understand what u want
  7. GamerGoiano

    Netsoccer 2 Soccer Game (SOURCE CODE)

    If somebody put it online, i want to play, send in the comments please <3 Netsoccer 2 is a multiplayer online soccer game and it's free to play. Each gamer controls a player, not a team as is common in most soccer games. You can join different teams and have matches against other teams or you...
  8. GamerGoiano

    TFS 1.X+ white message in channels? HOW?

    https://github.com/otland/forgottenserver/pull/2158
  9. GamerGoiano

    C++ Classic Spell Casting

    Now the spells will detect lowercase, uppercase and spaces in the spell usage TalkActionResult_t Spells::playerSaySpell(Player* player, std::string& words) { std::string str_words = words; //strip trailing spaces trimString(str_words); //transform the string in lowercase...
  10. GamerGoiano

    TFS 1.X+ white message in channels? HOW?

    https://github.com/edubart/otclient/blob/master/modules/game_console/console.lua @Drucken 1681765217 enum SpeakClasses : uint8_t { TALKTYPE_SAY = 1, TALKTYPE_WHISPER = 2, TALKTYPE_YELL = 3, TALKTYPE_PRIVATE_FROM = 4, TALKTYPE_PRIVATE_TO = 5, TALKTYPE_CHANNEL_Y = 7, TALKTYPE_CHANNEL_O = 8...
  11. GamerGoiano

    Help with NPC Mission (x items for Y reward)

    Send the Npc scripts here, all files of Npcs em the lib folder @Qbecky and mention me
  12. GamerGoiano

    TFS 1.2 Crash because of spell?

    Where is power_down.lua ? @Tbol
  13. GamerGoiano

    Skull in PZ (fields)

    if (it.conditionDamage) { auto conditionCopy = it.conditionDamage->clone(); const auto ownerId = getOwner(); if (ownerId) { bool setOwner = true; bool harmfulField = true; const auto worldType = g_game.getWorldType(); const auto tile = getTile()...
  14. GamerGoiano

    Skull in PZ (fields)

    https://github.com/otland/forgottenserver/blob/master/src/player.cpp This may solve your problem if (!targetPlayer->isInProtectionZone()) { setSkull(SKULL_WHITE); g_game.updateCreatureSkull(this); } if(skull == SKULL_NONE) {...
  15. GamerGoiano

    Remove Condition

    Try it @Hertus function prepareDeath.onPrepareDeath(player, lastHitKiller, mostDamageKiller) if player:isPlayer() then if player:getStorageValue(boss.config.storageJoined) > 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_ORANGE, "You have been killed.")...
  16. GamerGoiano

    TFS 1.2 Crash because of spell?

    @Tbol the power down script full and spells.xml full pls https://github.com/otland/forgottenserver/blob/1.2/src/spells.cpp player->sendTextMessage(MESSAGE_INFO_DESCR, ss.str()); g_game.addMagicEffect(player->getPosition(), CONST_ME_MAGIC_BLUE); return true;
  17. GamerGoiano

    TFS 1.2 Crash because of spell?

    The error occurred when addMagicEffect() was called with an invalid argument. Based on the stack trace, it appears that the invalid argument was passed to luaPositionSendMagicEffect() from LuaScriptInterface, which in turn called playerCastInstant() in Spells, and eventually led to the error in...
  18. GamerGoiano

    TFS 1.X+ [TFS 1.3] How To Do Player Can't Attack Summons?

    @Elsilva157 U should do this in spells (In c++) // Verification if it is a summon if (target->getCreature()->isSummon()) { // Ignore the damage in summons continue; } // Apply normal damage for other Targets ... If you want change the spell lua local combat = Combat()...
  19. GamerGoiano

    Help with NPC Mission (x items for Y reward)

    @Qbecky what TFS version?
  20. GamerGoiano

    Help with NPC Mission (x items for Y reward)

    @Qbecky change: NpcSystem.parseParameters(npcHandler) to: npcHandler:addModule(NpcSystemModule:new()) Replace {} to () in: "There is a special {event} that you can participate in to receive amazing rewards."
Back
Top