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

    How to get uid item through otclient

    client does not receive server's items uids, if that's what you want
  2. EvulMastah

    Czas leci...

    💩
  3. EvulMastah

    Spawn - Block certain monster.

    Maybe you missed something? monsters: Add ignoreSpawnBlock flag (#3601) · otland/forgottenserver@634ac9f (https://github.com/otland/forgottenserver/commit/634ac9f63db1317e42917e29b2bd126edbe7a1d0)
  4. EvulMastah

    How to add old rope system in Cip files?

    The types (items) are described in the objects.srv file. Find the ids I've mentioned and remove, if I recall correctly, ForceUse from Flags. As for the dat, any dat editor (itemeditor?, objectbuilder?) that supports 7.7 is enough.
  5. EvulMastah

    How to add old rope system in Cip files?

    I am not sure that you will find a solution to be used in the scripts. What would probably work is to edit objects.srv and remove force use flag from TypeID 386 & 421. You would possibly have to also remove it from Tibia.dat (client).
  6. EvulMastah

    OTClient 1.0 (Release)

    Try changing 5 to -10 here: otclient/statictext.cpp at 9b8c08924f07220f71673793c56b6234648c658c · mehah/otclient (https://github.com/mehah/otclient/blob/9b8c08924f07220f71673793c56b6234648c658c/src/client/statictext.cpp#L39) 🤔
  7. EvulMastah

    How remove anti-luring system in Cip files?

    I might be wrong, but I think it was Radius in the monster.db file. So... # Race X Y Z Radius Amount Regen. # ====== 0997,0988,09 ==================== 50 31927 31622 9 50 3 700 The second 50 would be the radius.
  8. EvulMastah

    How to remove the furniture packages in shop NPC in the CipSoft files?

    Edit what it gives in gen-t-furniture-*.ndb.
  9. EvulMastah

    OTClient GA4 (Google Analytics) in OTC/OTCv8?

    Did he mention hardware data? Also, the client can send hardware data that you can connect with the account, so yes, server can have that information also. Everything else is just performing crafted sql queries.
  10. EvulMastah

    OTClient GA4 (Google Analytics) in OTC/OTCv8?

    And why would you want to implement this client-side when all of your points can be done server-side?
  11. EvulMastah

    OTClient 1.0 (Release)

    Add libprotobuf-dev to Dockerfile list of installed packages
  12. EvulMastah

    AAC On submit change SQL value from 0 to 1

    lol, let's assume you make any sense... $SQL->query('UPDATE player_reports SET solved = 1 WHERE id = $gid'); how is this part of html? how do you think this string will end up?
  13. EvulMastah

    AAC On submit change SQL value from 0 to 1

    report&action Don't use that code in your production environment, you have to escape the id. Also, this will not work: $SQL->query('UPDATE player_reports SET solved = 1 WHERE id = $gid'); You have to use double quotes for string interpolation
  14. EvulMastah

    AAC On submit change SQL value from 0 to 1

    This should be either a form or a link with query parameters. Then, by reading $_POST (in case of form) or $_GET (in case of query params) you can read the passed arguments and execute the query updating the report. You could, for example doing it gesior aacs way, use...
  15. EvulMastah

    Forum for servers and open tibia servers plans.

    What do you mean? You can use whatever forum platform you want, for instance phpBB 🤔
  16. EvulMastah

    Retrocores serious privacy violation ! Watch out !

    Like when? I still have somewhere source codes of the oldera/classicus/thronia clients I was involved in and none of this was there, at that time. 🤔
  17. EvulMastah

    Sql syntax error

    It's not empty, it's a binary representation of \0001 that you can see in the syntax error. You just have to cast the value to an integer when creating the query (it's probably an uint8 now).
  18. EvulMastah

    Wanderer 2D - c++ game project

    Just check TFS pugixml usage or an older version with libxml. You could also try jsoncpp instead of xml or even rollout your own format, depending on your needs. I could potentially help you with either
  19. EvulMastah

    [Bug] TFS 1.4+ InitDamage attribute in fields doesn't work properly.

    What? Zanera was merged in 2018. The leak is from around 2006 (IIRC). Experimental worlds were introduced in 2017, those were Zuna and Zunera. 🤔
  20. EvulMastah

    OTClient 1.0 (Release)

    Ok. But where are YOUR contributions? The only bigger one was that poor encryption thing that you did not do, you paid for it ($18 IIRC) and I don't mean only OtClient I mean any contributions, wherever. You come everywhere REQUESTING a fix because something is not working like YOU would want it...
Back
Top