Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 21/03/22 in all areas

  1. Hello everyone! Back at you with another resource, this time called NandoCrypt! This tool lets you encrypt any files using a secret key (string) that is stored inside a script that it generates & compiles. You use the script it creates to decrypt the files in your own resource(s). It uses aes128 (Advanced Encryption Standard in CTR mode) with 16 characters long keys and IVs to decrypt. You can download the latest version & read the documentation @ GitHub Repository: https://github.com/Fernando-A-Rocha/mta-nandocrypt All the information you need is there ^^ Also available on MTA:SA Community: https://community.multitheftauto.com/index.php?p=resources&s=details&id=18672 (will try to update often) See nando_crypt-example resource in the repository for an example implementation (script that replaces vehicles using encrypted files). For support/questions please access my main thread: https://forum.multitheftauto.com/topic/139644-rel-nandos-resources/ Let me know what you think and share with your friends PS. Thank you @Patrick for the help!
    2 points
  2. Moderators are welcome to communicate in English across every forum if they're not comfortable using a foreign language. If someone is unable to understand what we're saying, we will ask the language section's moderators for help, but it looks like you're able to understand English just fine
    1 point
  3. The ban was a false positive, and we removed it 11 hours after your appeal. Sorry for any inconvenience caused by this
    1 point
  4. The "relative" is calculated according to "parent". For example local labelA = guiCreateLabel(100,100,400,200,"",false) local labelB = guiCreateLabel(0.1,0.2,0.5,0.5,"",true,labelB) for labelB, it's x = 0.1 * 400 y = 0.2 * 200 width = 0.5 * 400 height = 0.5 * 200 In this way, we can know that: x = relativeX * parentWidth y = relativeY * parentHeight width = relativeWidth * parentWidth height = relativeHeight * parentHeight If there's no parent, parentWidth and parentHeight will be screenWidth and screenHeight.
    1 point
  5. 1 point
×
×
  • Create New...