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

Recent content by fusion32

  1. fusion32

    [SOLVED] OTClient Lua Exception: attempt to index local 'spell' (a nil value)

    The client is probably not handling message 164 correctly which is the spell cooldown message. It is either reading more or less bytes than it should causing other messages in the same packet to be discarded (after getting an unhandled opcode error). The message to remove the creature and create...
  2. fusion32

    TFS 1.X+ [SOLVED] Connecting to game server hangs

    If you cloned it from master I suppose the server is supports version 12.80 as seen in the screenshot below. If that's the case, protocol 10.98 and 12.80 are not compatible and the client hangs while waiting for information that will never come because some message ids are different, messages...
  3. fusion32

    canary server problem client 12

    With client 12, cipsoft made the login server be some sort of web service. This means so you'll need to setup an HTTP/HTTPS server and make the client use the appropriate address when doing login requests. I think there are some PHP scripts around the forums named login.php.
  4. fusion32

    Change damage numbers to text (example 10000 to 10k) [TFS 1.4]

    In earlier client versions the server would send damage numbers as floating/animated text to the client so changing "10000" to "10k" would be a small change. In the current version it seems that damage numbers are sent as extra data in ProtocolGame::sendTextMessage so it's no longer trivial to...
  5. fusion32

    C++ Convert RSA System from old to new

    See if you get the same problem with the default OT RSA key. It may be that the OTClient isn't setting the key properly? Also, it is always a good idea to generate your keys locally. Here are some commands if you have OpenSSL: # Generate RSA1024 key pair openssl genpkey -algorithm RSA -pkeyopt...
  6. fusion32

    Job with source TFS 1.2 (8.0) only 1 function instant fix [RUNE ATTRIBUTE] - reward 80$!

    Your problem is probably in NetworkMessage::addItem in "networkmessage.cpp". I don't remember if runes even had charges back then but you may be able to fix this updating you "items.otb" and making runes not have the "stackable" attribute. EDIT: I guess this was old... fuck me.
  7. fusion32

    Windows Old Tibia Clients?

    I re-installed windows last week and I can't seem to find the old tibia client installers except for a few suspicious ones. I remember there used to be a site that had them all but can't recall it's name. Is there anything like that today? The clients from otservlist are all zipped instead of...
Back
Top