• 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!

Recent content by MovieBR

  1. MovieBR

    Lua Question about teleport creatures in an area

    Look this code, maybe help you with getSpectators. https://github.com/moviebr/baiakthunder/blob/265d45805c5d2204262ffd55b8fc67d97b829916/data/scripts/actions/bossRoom.lua#L37
  2. MovieBR

    Gravak - Play Tibia 7.4 in your Browser

    Nice :) (Cadê as Winx?)
  3. MovieBR

    Lua Lua Script Error : 'doNpcSellItem' (a nil value) : When trying to purchase something from a merchant

    You don't have this function declared in your base. It can be either via script or in the source, look for it in the datapack you got. Look here: forgottenserver/npc.lua at 0e20d54eebc6be8ea7ed50d0fd3d31d5d43df1f9 · otland/forgottenserver...
  4. MovieBR

    TFS 0.X Help! How to Prevent the player from executing any actions within the server?

    I believe there is already a function in 0.4 that can do this. Post your luascript.cpp or base repository link
  5. MovieBR

    Roulette System

    Congratulations on the system, very good! Thanks for sharing. This system has also been made by Lyu. Click here to go to the repository. Some changes are necessary if you are going to use the one from the repository.
  6. MovieBR

    Someone can help with c++ tfs 1.2

    Try this way, i'm still learning cpp. bool Npc::getNextStep(Direction& dir, uint32_t& flags) { if (Creature::getNextStep(dir, flags)) { return true; } SpectatorVec spectators; g_game.map.getSpectators(spectators, this->getPosition(), false, true); if...
  7. MovieBR

    Exeta amp res dont work TFS 1.5 downgrade 8.6

    The getPathTo is on otland repository. https://github.com/otland/forgottenserver/blob/master/src/luascript.cpp#L8566 But in Nekiro's repository has this function too https://github.com/nekiro/TFS-1.5-Downgrades/blob/8.60/src/luascript.cpp#L7798 Another thing... maybe i'm wrong. The getPathTo...
  8. MovieBR

    Lua TFS 1.3 antibot

    This script is mine haha, happy to see someone using it. ANTIBOT = { prefix = "[AntiBot] ", questions = { {question = "What year did COVID-19 start?", staticAnswer = true, answer = "2019"}, {question = "What is your current Sword skill?", skill = true, answer =...
  9. MovieBR

    CreatureEvent [TFS 1.X] AntiBot

    https://github.com/moviebr/baiakthunder/commit/d4dd1d19f079fc25aa1284ccb11af75bb4f2564a
  10. MovieBR

    TFS 1.X+ TFS 1.3 8.60 spell exeta res

    Try adding this code in combat.cpp https://github.com/moviebr/baiakthunder/commit/6a757e2394536643ac02374e5252615556be7cb2#diff-0bdead07354493d57d8e6afe4e01d8bb6964e753a6c3f96e6d3b5e1e55006df2
  11. MovieBR

    RevScripts [OTBR] Help talkaction !target

    int LuaScriptInterface::luaSendCreatureSquare(lua_State* L) { // player:sendCreatureSquare(creature, color) Player* player = getUserdata<Player>(L, 1); if (!player) { lua_pushnil(L); return 1; } Creature* creature = getUserdata<Creature>(L, 2); if (!creature)...
  12. MovieBR

    CreatureEvent [TFS 1.X] AntiBot

    I didn’t get to see your topic, a big coincidence actually, but it’s great code too.
  13. MovieBR

    CreatureEvent [TFS 1.X] AntiBot

    Yes, it can be modified. Now i can't do that beacuse i'm totally focused in a project but it's possible. 1616705174 Thanks babe :)
  14. MovieBR

    CreatureEvent [TFS 1.X] AntiBot

    [AntiBot] I made this system for Thunder but I will leave it aside in this topic here for those who want to implement it in their otserv. Create a file in the lib folder named antibot.lua ANTIBOT = { prefix = "[AntiBot] ", questions = { {question = "Qual o ano que começou o...
Back
Top