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

    Scripter [TFS 1.x ONLY] Scripting Service

    Bump. Available for work.
  2. Westwol

    Scripter [TFS 1.x ONLY] Scripting Service

    Hello folks! You want to implement a new system, event or feature for your server but you lack of knowledge. I can do that for you. Experience with: LUA. C++ (little modifications or basic systems). Gesior AAC. Windows to Linux migration & Linux installation service. Steps: Request your...
  3. Westwol

    Solved stopEvent TFS 0.4 is not working.

    Basically in order to stop an ongoing event you need the eventId, you can store it in a table or variable. For example: -- Variable that will store the eventId. local eventId = nil -- Triggering the event and storing the id. eventId = addEvent(countDown, 1000, param, param, param, param, param)...
  4. Westwol

    Lua The Time Guardian boss script

    You can store damage map for every player into a table and then retrieve it and add it to the next monster, here comes the tricky part, you have to create a method pointing Creature::addDamagePoints then you just have to make a creatureevent to do that.
  5. Westwol

    Ping System (OTHire)

    I am not really into OTHire but as far as I can see in the changes, there's not pongBack therefore the ping system proceeds to kick you. I'd suggest to take a look how the pong is being received. if (noPongTime >= 60000) { if(canLogout()){ if (client) {...
  6. Westwol

    OTClient Outfit limit, how to unlock it?

    It all depends on how many outfits your Tibia client supports, it is hard to bypass that limit in a such limited client.
  7. Westwol

    Feature [TFS 1.3] Monster Levels

    luascript.cpp Below: registerMethod("Monster", "getType", LuaScriptInterface::luaMonsterGetType); Add: registerMethod("Monster", "getMonsterLevel", LuaScriptInterface::luaMonsterGetLevel); Below: int LuaScriptInterface::luaMonsterGetType(lua_State* L) { // monster:getType() const...
  8. Westwol

    move all players

    function onThink(interval, lastExecution) if string.lower(rotateMaps) ~= "yes" then return true end local players = Game.getPlayers() local currentTemple = Game.getStorageValue(currentMap) if #players == 0 then return true end if currentTemple ==...
  9. Westwol

    TFS 1.X+ cloud of thought / dialogue NPC

    Just remove the param speechbubble from Aruda.xml
  10. Westwol

    MoveEvent Refill Stamina on PZ for premiums

    Put this line in global.lua staminaRegen = {}
  11. Westwol

    Compiling Map Convert

    Zoom in, lol.
  12. Westwol

    Compiling Map Convert

    Ctrl + T , select a town and click on "Go To".
  13. Westwol

    Compiling Map Convert

    Try using this RME. https://gitlab.com/malucooo/OTXServer-SDK/-/archive/master/OTXServer-SDK-master.zip
  14. Westwol

    Compiling Map Convert

    Import the map instead.
  15. Westwol

    TFS 1.X+ Spell collision system

    Storages in TFS 1.3 does not work with strings anymore.
  16. Westwol

    Custom Client Edit

    I don't think it is possible to remove features from CipSoft client, I've heard that it is possible to add features injecting a dll into the client but not to remove something.
  17. Westwol

    [BUY] Ancient Spawn Of Morgathla map

    As the title says, I'd like to buy this map, can pay through PayPal. Contact: Discord: Westwol #1337
  18. Westwol

    Lua Tanjis Boss

    If you are sure the position is valid, you can always force the summon: Game.createMonster("Tanjis", Position(33647, 31242, 11), false, true)
  19. Westwol

    Feature Unpack items/outfits from any client to PNG with OTClient!

    I sucessfully unpacked items from my server following this tutorial but when I try to export outfits with animations I've got a crash dump. OS: Ubuntu 16.04 Log: == application crashed app name: OTClient app version: 0.6.6 build compiler: - Pastebin.com
Back
Top