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

    TFS 0.X Crash: ChatChannel removeUser

    hello, sometimes a server crash occurs (or someone else causes it): gdb log: - Thread 2 "tfs_2" received signal SIGSEGV, Segmentation fault. - [Switching to Thread 0x7ffff4c6c700 (LWP 32327)] - std::_Rb_tree<unsigned int, std::pair<unsigned int const, Player*>...
  2. GSMaster

    TFS 0.X Cast problem / server freeze

    Good morning, i added this cast to TFS (0.4): Comparing otland:master...CastSystem:master · otland/forgottenserver (https://github.com/otland/forgottenserver/compare/master...CastSystem:master) and unfortunately sometimes the server freezes... it looks like packages are overlapping? (MSG /...
  3. GSMaster

    Magic Effect 'move' with player?

    hello, how to make the animation on player (eg if it has 7 animations) was still on him (player) if player moves?
  4. GSMaster

    remove Bed from house

    Hello, does anyone have a c+ code to remove beds fromhouse tile?
  5. GSMaster

    Compiling mvs2017 - Release/win32 error unresolved external symbol ..

    hello, compile using Microsoft Visual Studio 2017 with vcpkg lates otclient src, version Release/win32, I get errors of this type: 1>LINK : error LNK2001: unresolved external symbol _mainCRTStartup 1>libcpmt.lib(ppltasks.obj) : error LNK2001: unresolved external symbol ___CxxFrameHandler3...
  6. GSMaster

    Compilation don't start

    CMake 3.0.1 log: The C compiler identification is GNU 4.8.1 The CXX compiler identification is GNU 4.8.1 Check for working C compiler: C:/MinGW/bin/gcc.exe Check for working C compiler: C:/MinGW/bin/gcc.exe -- works Detecting C compiler ABI info Detecting C compiler ABI info - done Check for...
  7. GSMaster

    Action More xx% exp for a time.

    Players get more experience in percentages for some time, it works well if you logout and log back on. (idea: http://otland.net/f28/exp-rate-box-20-a-159400/) Make file: \data\actions\scripts\expBox.lua paste: function onUse(cid, item, fromPosition, itemEx, toPosition) if...
  8. GSMaster

    [help] getStorageValue use in C++

    Hi, I need help he wants to do to a player who has ( getStorageValu 12345 = 1 ) not get skull after the attack another player I try (I have no idea how to use the c++) if(targetPlayer->getStorageValue(12345, 1)) return; errors: player.cpp In member function `virtual void...
  9. GSMaster

    onEquip bug ?

    why this feature is repeated twice? check: function onEquip(cid, item, slot) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "text / "..os.time()) return true end result: 14:59 text / 1281790792 14:59 text / 1281790792 TFS 0.3.5_SVN (onDeEquip work perfect)
  10. GSMaster

    Create floor

    if you can create floor in a place where there is nothing (in the map there is no floor), for example the floor above. (lua script)?
  11. GSMaster

    updateBaseSpeed() in skill advanced

    Hi, I added a line code to "player.cpp" that for every increase in fishing again update basespeed player. Do you pasted the code will not crashed server ? So far it works without a problem, but wants to be sure. char advMsg[45]; sprintf(advMsg, "You advanced in %s%s."...
  12. GSMaster

    TalkAction /namelock (for online players)

    This script allows you to change the name of a player who is online. Can be set to a particular player took up days PACC. The script also checks whether you are ONLINE, PACC is whether the new name is not already busy, name must contain 4 characters min. (explained in translate.google.pl)...
  13. GSMaster

    Webdesign TheDarkRed (ACC)

    out of boredom I made styles, how you assess? (layout for Gesior ACC) SS:
  14. GSMaster

    getHouseAccessList(houseid, listid) - How To ?

    hello, how to use this function? (reP++) getHouseAccessList(houseid, listid)
  15. GSMaster

    Fast Attack - Skills ?

    If you can be done to fast-attack depended on the skill? eg AXE? not working :( this: uint32_t Player::getAttackSpeed() { Item* weapon = getWeapon(); if(weapon && weapon->getAttackSpeed() != 0) return weapon->getAttackSpeed(); return player->getSkill(SKILL_AXE, SKILL_LEVEL) * 100 ; }...
  16. GSMaster

    setPlayerMagicLevel

    It is possible to write the following functions: setPlayerMagicLevel(cid, maglvl) to alter the Magic Level of the player so I want Example: setPlayerMagicLevel(cid, 25)
  17. GSMaster

    [Function] best hit save ?

    whether it a feature that saves the best hit in the monster to the SQL database?
  18. GSMaster

    Wyciaganie danych z bazy - lista

    Czesc, mam pewien problem chce żeby z danej bazy wyciągnięte informacje pokazywały się jeden za drugim, przykład: local baza1 = db.getResult("SELECT `item` FROM `test` WHERE `ids` = 10 ; ") local iditem = baza1:getDataInt('item') W tabeli mam np 10 x item o rożnych numerach, każdy ma...
  19. GSMaster

    Obciążenie serwera

    Obciążenie serwera: 99 % Obciążenie RAM: 98 % Obciążenie SWAP: 100 % Co może być powodem ? wydaje mi sie że Apache niestety nie moge tego sprawdzić bo gdy jest takie obciążenia nawet SSH nie działa ;( TFS 0.3.5_SVN [r2232]
  20. GSMaster

    PACC - You are at place -1 :|

    Hello, I have a problem when the player with the premium account you want to log on to the full server writes "You are at place -1 on the waiting list"a player without a premium said "You are at place 1 on the waiting list" Why the player with the premium can not log on to the server with no queue?
Back
Top