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

Recent content by MovieBR

  1. 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...
  2. 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
  3. 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.
  4. 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...
  5. 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...
  6. 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 =...
  7. MovieBR

    CreatureEvent [TFS 1.X] AntiBot

    https://github.com/moviebr/baiakthunder/commit/d4dd1d19f079fc25aa1284ccb11af75bb4f2564a
  8. 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
  9. 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)...
  10. MovieBR

    CreatureEvent [TFS 1.X] AntiBot

    I didn’t get to see your topic, a big coincidence actually, but it’s great code too.
  11. 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 :)
  12. 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...
  13. MovieBR

    Gesior Open Source for Downgrades

    Hey guys, is everybody okay? A few days ago, I was looking for a website that was compatible with my downgraded server (TFS 1.3 to 8.60) and i can't find (according to my research) there is none. So, what I did was take an original project that already exists (this one) and made a fork to...
  14. MovieBR

    Cast Chat does not open

    Someone?
Back
Top