• 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. Ascuas Funkeln

    OTClient Helps with OTC UI

    What u wanna do? By press X, do "OnOff" u mean something in module otui hide or show?
  2. Ascuas Funkeln

    Lua do not allow the same ip for the boss (MC)

    Check this, and change "from, to" position to your room position function onUse(player, item, fromPosition, target, toPosition, monster, isHotkey) local from = {x = 981, y = 997, z = 10} local to = {x = 1002, y = 1017, z = 10} local pos = {x = 992, y = 1008, z = 10} for x =...
  3. Ascuas Funkeln

    Lua Small Stamina Refil

    Trust me, migrate to higher release :)
  4. Ascuas Funkeln

    Lua Damage spell

    1. U operate dmg by storages, then to easy work do something like this: Ofc u can all time check/change storages at database, but i think preparing item to fast checking its good for future work.(then you dont need all time open database to finding storages) Create item, talkaction or whatever...
  5. Ascuas Funkeln

    Lua Small Stamina Refil

    function onUse(player, item, fromPosition, itemEx, toPosition) local StaminaLevel = player:getStamina() local StaminaMax = 42 * 60 * 1000 local StaminaValue = 10 * 60 * 100 if StaminaLevel >= StaminaMax then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_ORANGE, "Your...
  6. Ascuas Funkeln

    OTserver vs. OMServer

    No, and no. I remember when Medivia launch... Its was normal tibia ots with Tibia sprites, in time they go forward to custom, anyway... Im pretty disgusted in what direction everything with it going. What i mean? Ok, nostalgia, tibia etc. but, we have epic community, powerful tools, amazing...
  7. Ascuas Funkeln

    TFS 0.X How to change MAX stamina?

    1. Mehah 2. This: bool Player::rateExperience(double& gainExp, bool fromMonster) { if(hasFlag(PlayerFlag_NotGainExperience) || gainExp <= 0) return false; if(!fromMonster) return true; gainExp *= rates[SKILL__LEVEL] * g_game.getExperienceStage(level...
  8. Ascuas Funkeln

    TFS 0.X How to change MAX stamina?

    Sorry, i have already total custom client and dont have little stuff for "basic tibia", i check basic OTclient files and u must also change This: --TODO not all client versions have premium time if stamina > 2400 and g_game.getClientVersion() >= 1038 and localPlayer:isPremium() then...
  9. Ascuas Funkeln

    Linux Server save notifications

    U need notifications when server are auto saved or when u execute talkaction /save ? Just add in script broadcastMessage("Server saved!", MESSAGE_STATUS_CONSOLE_BLUE)
  10. Ascuas Funkeln

    Windows Object Builder transparent exporting?

    Save it to other folder, then replace.
  11. Ascuas Funkeln

    TFS 0.X How to change MAX stamina?

    1. Bar is fixed now? 33 hours is max? staminaRatingLimitTop = 30 * 60, its when green end. At 30 hours start being orange. staminaRatingLimitBottom = 14 * 60, bellow 14 hours start being red 2. As i see, Rat give 6 EXP then rateStaminaAboveNormal = 10.0 - Green Stamina multiple Orange stamina =...
  12. Ascuas Funkeln

    Windows Object Builder transparent exporting?

    U follow instructions? U "Compile as" with checked transparency box? U load sprite with checked transparency box?
  13. Ascuas Funkeln

    Windows Object Builder transparent exporting?

    1. ObjectBuilder->File->Preferences->Custom Client-> Set Transparency ON 2. Compile as->Check box Transparency->Compile 3. Load again sprite file, now is in transparency mode. When you export as png u have it with alpha channel.
  14. Ascuas Funkeln

    TFS 1.X+ Block Avalanche

    In ObjectBuilder set trees or what u want as "Block Missiles", and save, then open item editor and load item.otb, reload item attribute and save. Reset client and server, and tress or what u want block wave etc.
  15. Ascuas Funkeln

    TFS 0.X How to change MAX stamina?

    player.h Change this: #define STAMINA_MAX (42 * 60 * 60 * 1000) To this: #define STAMINA_MAX (33 * 60 * 60 * 1000) databasemanager.cpp Change this: case 11: { std::clog << "> Updating database to version: 12..." << std::endl; db->query("UPDATE `players`...
  16. Ascuas Funkeln

    New TFS logo / icon

    Why not recognize the contributions of the creators? Like: Sorry i must :D
  17. Ascuas Funkeln

    TFS 0.X How to change MAX stamina?

    luascript.cpp player->staminaMinutes = std::min<uint16_t>(2520, stamina); to player->staminaMinutes = std::min<uint16_t>(1980, stamina); player.h uint16_t staminaMinutes = 2520; to uint16_t staminaMinutes = 1980; Anyway i check it on 1.2, i hope you use...
  18. Ascuas Funkeln

    Lua Unjustified Points

    U can try this Added support to orangeSkull and the current frag system (brunominerv… · mattyx14/otxserver@43fb8ee (https://github.com/mattyx14/otxserver/commit/43fb8ee63e627f8d1f8996999b9ff66748defc1e)
  19. Ascuas Funkeln

    Lua Unjustified Points

    U must code it
Back
Top