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

    Programmer Need OTC Programmer (50U$)

    how much for only block auto attack function?
  2. R

    Programmer Need OTC Programmer (50U$)

    Need a programmer to do: 1) Protect Sprites (OTClient), have some dlls and programs that decompile sprites, modules and etc. 2) Add function that player can (enable and disable). If enabled, player only see your own spells and target spell. If disabled, all occours normally, player can see all...
  3. R

    Solved Error during compilation

    Who is better OTclient? Im tring to compile this: GitHub - OTCv8/otcv8-dev: OTCv8 Development repository (source code) (https://github.com/OTCv8/otcv8-dev)
  4. R

    Solved Error during compilation

    Hi guys, im tring to compile OTCV8, but get this error, how can i solve it? Error occours after this command, for install libs. ./vcpkg install boost-iostreams:x86-windows-static boost-asio:x86-windows-static boost-beast:x86-windows-static boost-system:x86-windows-static...
  5. R

    OTClient OTClient - Extended Window View - Black Screen

    I use tfs 1.2 downgraded by nekiro 8.6. Need to edit some code in tfs? Look what happens when login, the edges are black. I Want to see all Sqms that are black:
  6. R

    OTClient OTClient - Extended Window View - Black Screen

    dont worked, =( I need make modification in source (tfs)?
  7. R

    OTClient OTClient - Extended Window View - Black Screen

    Hi Guys, im using tfs 1.x for 8.6. Now im using OTCV8, i have added this for extend window: g_game.enableFeature(GameExtendedOpcode) g_game.enableFeature(GameChangeMapAwareRange) But when I use "ctrl -", to expand the screen, the edges turn black. How solve this? Want to solve...
  8. R

    OTClient Bug skills OTClient (skills show 0, but not 0)... extended limit

    Solved, added what Gesior saied, and now works fine: g_game.enableFeature(GameDoubleMagicLevel) g_game.enableFeature(GameDoubleSkills)
  9. R

    OTClient Bug skills OTClient (skills show 0, but not 0)... extended limit

    OTCv8 and tfs 1.x... i added it but not solved. When i login my skills stay in 0, when i put some item that have skills atributte, the skill show real, if i remove item, back to 0
  10. R

    OTClient OTC Error: ProtocolGame parse message exception

    I get this error when login in OTClient 8.6, show can i solve it? Using tfs 1.x for 8.6
  11. R

    OTClient Bug skills OTClient (skills show 0, but not 0)... extended limit

    Hello everyone, I have the skill limits extended in the source, player can take skill > 255, and it work in old client 100%, because i changed client with a dll. But if i login with OTClient, it show all skills = 0, why? How can i extended skills in OTclient? protocolgame.cpp if...
  12. R

    Programmer OTC - Need some modules & some things

    Hello Guys! How are you? I need some programmer that know edit OTClient, sources code and modules. 1 - Increase some modules. 2 - Add extended screen. 3 - Adjust some error that appears in terminal. 4 - Add opacity in menu. 5 - Block some functions (in bot). If u make this job, tell me, and we...
  13. R

    Solved Compiling OTClient - Lasted Version ()

    Hello guys, im tring to compile TFS lasted version in windows 10, using Visual Studio V17. I used this tutorial to compile in windows: Compiling on Windows (https://github.com/edubart/otclient/wiki/Compiling-on-Windows) But i have this erros, how can i solve it? Severity Code...
  14. R

    Programmer Looking for someone to modify OTClient

    Hello! Good night everybod. I need someone with experience in OTClient to introduce some functions and edit the client, the service will be paid. Block access to sprites. Block the "auto attack". Things like this and more things... PM to me
  15. R

    TFS 1.X+ erro check slot item

    local function Formula(skill, level, attack) local skillTotal = skill*attack local levelTotal = level / 5 return {-(((skillTotal * 0.04) + 8) + (levelTotal)), -(((skillTotal * 0.09) + 13) + (levelTotal))} end local area = createCombatArea(AREA_SQUARE1X1) local function...
  16. R

    GFB - DMG

    TRY local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_FIREAREA) combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_FIRE) combat:setArea(createCombatArea(AREA_CIRCLE3X3)) function onGetFormulaValues(player...
  17. R

    TFS 1.X+ Special Item (if u look, u look item behind this).

    There's a glossy item they use to put on top of items that can't be picked up but can be seen, does anyone have this item's ID? for example I'm going to add an item on the floor and above it this shiny item, people couldn't get the item from the ground, because the shiny one is above. does...
  18. R

    C++ help to fix this my code for tfs 1.x please

    if (target->getPlayer()) { if(player->getLevel() > (target->getLevel() + 30) || player->getLevel() < (target->getLevel() - 30)) { RETURNVALUE_YOUMAYNOTATTACKTHISPLAYER; } }
  19. R

    TFS 1.X+ Name player in Magic Wall - Wild Growth Rune and Firebomb

    Put a caster name in custom attribute when player cast spell, and onEvents, u put onLook, if item have custom attribute, it will show playerName.
Back
Top