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

Search results

  1. G

    Lua Help with my script tfs 1.2

    no work ;s always i need relog to get addon
  2. G

    Lua Help with my script tfs 1.2

    I have this script, that give outfit/addon for player with x storage. on Creaturescripts function onLogin(player) if player:getStorageValue(5005) == 1 then player:addOutfitAddon(player:getSex() == PLAYERSEX_MALE and 131, 3 or 139, 3) end return true end the script work...
  3. G

    Znote AAC Character Auctions System

    He will post?
  4. G

    Lua script TFS 1.2

    How can i do effect on corpse position of creature after death? "water elemental" when die, i need effect number 3 on corpse.
  5. G

    Nostalrius 7.7

    Any news about fix the issues related in github? Anyone fixed ?
  6. G

    Nostalrius 7.7

    I got errors using OTCLIENT, items desappear in ground... what function in protocolgameparse need disable ?
  7. G

    Lua Help tfs 1.2 Lose Promotion Script

    i found in sources int32_t newVocation = player->getVocationId() + 4; player->setVocation(newVocation); player->addStorageValue(30018, 1);
  8. G

    Lua Help tfs 1.2 Lose Promotion Script

    my script on login.lua Script -- Promotion if player:isPremium() then if player:getVocation():getId() ~= 0 and player:getVocation():getId() < 5 and player:getStorageValue(30018) == 1 then player:setVocation(player:getVocation():getId() + 4) end else...
  9. G

    Lua tfs 1.x script edit

    use loop function
  10. G

    Programmer Looking for C++ programmer

    Job: fix issues and bugs related on https://github.com/TwistedScorpio/Nostalrius/issues
  11. G

    TFS 1.X+ help console error mysql_real_query

    I got this error on console... [Error - mysql_real_query] Query: INSERT INTO `players_online` (`player_id`, `broadcasting`, `password`, `description`, `spectators`) my database players_online how add missing columns there? broadcasting password description spectators
  12. G

    C++ Error compilling, undeclared identifier how fix?

    MSVC compilling Error: 1>c:\users\server\desktop\src\iologindata.cpp(60): error C2065: 'result': undeclared identifier 1>c:\users\server\desktop\src\iologindata.cpp(61): error C2065: 'result': undeclared identifier 1>c:\users\server\desktop\src\iologindata.cpp(65): error C2065: 'result'...
  13. G

    TFS 1.X+ Lua script help 1.2

    My map have 3 towns Town id (Inferno) = id 1 Town id (Isle) =id 2 Town ( Jungle ) =id 3 if player:isPremium() then player:setStorageValue(1000, 1) elseif player:getStorageValue(1000) == 1 then player:setStorageValue(1000, 0) player:teleportTo({x = 201, y = 241, z =...
  14. G

    Nostalrius 7.7

    maybe spells are wrong there, doing diferents hit damage in a group of creatures, i don't remenber this in old tibia
  15. G

    TFS 1.X+ How add premium days

    Hello guys, how can i add premium days? I saw my database, have a long number in premium table... i need make some tests when the player lose premium, for example can i add less them 1 day? Or 1 minute of premium?
  16. G

    Lua check town of player tfs 1.2

    I'm looking for a command that checks the player's hometown Pseudocode if player have town id = 1 setplayerstorage (100,1) teleportPlayerto{x = 104, y = 923, z = 7}
Back
Top