| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 7,675
» Latest member: fevjuw
» Forum threads: 2,368
» Forum posts: 12,311
Full Statistics
|
| Online Users |
There are currently 883 online users. » 0 Member(s) | 879 Guest(s) Google, Yandex, Baidu, Bing
|
|
|
| EVO Anti-Cheat |
|
Posted by: Eduardo_AC - 2025-07-05, 01:43 PM - Forum: Libraries
- Replies (2)
|
 |
EVO Anti-Cheat 1.3
About:
This is a new server-side anti-cheat developed for OpenMP, whose goal is to have security and absolute control over the player's data (info).
It is currently in constant development, still having some inconsistencies in certain situations, but it already has dozens of detections and is currently being used for testing on a PvP server, having great feedback from the project management.
Detection configuration:
As this is a closed-source anti-cheat, it has an external configuration file that can be reloaded at any time.
The configuration file currently has just over 200 configuration entries, where it is possible to parameterize exactly how each cheat that allows an external configuration should be detected.
Below are some of the configuration entries for better understanding:
Code: cbug_speed_limit=
cbug_alert_count=
auto_cbug_speed_limit=
auto_cbug_alert_count=
armour_delay_check=
armour_alert_count=
health_delay_check=
health_alert_count=
driveby_delay_check=
fakekill_kill_flood_sequence_time=
fakekill_death_flood_sequence_time=
fakekill_kill_flood_alert_coun t=
fakekill_death_flood_alert_count=
fastrun_distance=
fastrun_distance_alert_count=
incoming_connection_alert_count=
incoming_connection_sequence_delay=
interior_delay_check=
interior_alert_count=
virtual_world_delay_check=
virtual_world_alert_count=
special_action_delay_check=
money_delay_check=
Security:
Any information in SA:MP can be easily manipulated, which can mess up the entire economy and the gameplay of others.
Currently, with the use of this anti-cheat, it is possible to recover correct information from the data of players who use cheats to manipulate them, such as health, armour, skin, weapons, ammo, attacked objects, etc., so that even when manipulating the information, it is not possible to maintain it during the data saving, thus creating an extra layer of validation in the information and ensuring the protection of each player's data against any type of external change.
Configuration control:
- Set when the anti-cheat should start for a specific player
- Set when the anti-cheat should stop for a specific player
- Set when the anti-cheat should pause or resume checking a specific cheat for a specific player
- Change and reload the anti-cheat settings at any time without having to restart the server or reload the filterscript
OS Compatibility:
All anti-cheat dependencies can be obtained for both Linux and Windows.
The anti-cheat is a filterscript, so it can be easily implemented like any other external script.
Game Mode Compatibility:
Since it is a robust anti-cheat with dozens of detections, an external configuration was created to adjust the detections according to the game mode or taste.
In a roleplay server, for example, the detections can be more sensitive, while for a PvP it is necessary to make weapon-related detections less sensitive or race-related detections less sensitive.
You can completely configure each detection as you prefer.
Detection approach:
The server is completely independent in deciding what to do about the detection.
For this, a library (evo_ac.inc) is provided containing all the information needed to apply the punishments and configurations.
Unlike most anti-cheats, this one generates an individual call in the respective callback informing more details about the detection.
Some callbacks:
Code: AC_OnInvalidCameraCrasher(playerid, cam_mode)
AC_OnPlayerAmmo(playerid, old_ammo, new_ammo, weaponid)
AC_OnPlayerArmour(playerid, Float:old_armour, Float:new_armour)
AC_OnPlayerCBug(playerid, speed)
AC_OnPlayerAutoCBug(playerid, speed)
AC_OnPlayerCheckpoint(playerid)
AC_OnPlayerDamageFlood(playerid, damagedid, weaponid, damage_count)
Damage control:
With Evo Anti-Cheat's damage control, even using cheat, the player's life decreases and if it doesn't decrease (through RPC blocks) there is no problem, because the player's life and vest are The player's health is handled unilaterally, that is, the client's (player's) health and vest are just another visual piece of information, just like money. So, for example, if the player's health is zero on the server, but on his screen his health is full due to RPC blocking, it will be considered cheating and will call the functions corresponding to the cheat.
It is also possible to configure the damage in different situations:
- Body parts
- For custom damage in 7 areas of the body
- Range
- Automatically blocks shots fired outside the defined range
- Damage blocking in body parts
- For custom damage blocking in 7 areas of the body
- Permission/block to give/receive damage
- To allow and/or block damage given or received to players
Detections (so far):
- Armor
- C-Bug
- Auto C-Bug
- Car Fly
- Dialog Spoof
- Drive-By
- Fake Kill/Death (flood)
- Fast Run
- GodMode
- Health
- Connection Flood
- Interior
- Special Action (All)
- Money
- Multi Connection
- No Fall Damage
- Ping
- Player Checkpoint
- Player Position (Fly, Airbreak, Teleport)
- Race Checkpoint
- Skin
- Vehicle Fast Enter/Exit
- Vehicle Health
- Vehicle Mod (Invalid, Cheat)
- Vehicle Speed
- Virtual World
- Weapon (Forbbiden, Invalid, Cheat)
- Ammo (Infinite, Invalid, Cheat)
- Rapid Fire
- Free Cam
- Player Velocity (troll)
- Vehicle Velocity (troll)
- Fake AFK
- Fake Lag
- Invisible
- Damage (Invalid, Flood)
- Silent Aim
- Pro Aim
- Quick Vehicle Change (shot, pull, teleport)
- Anti Kick
- Invalid Bullet Crasher
- Invalid Damage Crasher
- Invalid Camera Crasher
- NOP (TogglePlayerSpectating, TogglePlayerControllable, RemovePlayerFromVehicle, SpawnPlayer, SetPlayerPos)
- Attached Objects (Full protection)
- RCon [new]
- Force Spawn [new]
- Fast Respawn [new]
- Flood Cheats [new]
Resources required:
- [Plugin] GVar
Functions added so far:
Anti-cheat configuration:
Code: stock EAC_InitPlayerAC(playerid) // Starts the anti-cheat for the player
stock EAC_StopPlayerAC(playerid) // Stops the anti-cheat for the player
stock EAC_IsActivePlayerAC(playerid) // Checks if the anti-cheat is active (started) for the player
stock EAC_PausePlayerAC(playerid, bool:pause, cheatid = -1) // Pauses a given protection for the player
stock EAC_IsPausedPlayerAC(playerid, cheatid) // Returns if a given protection is paused for the player
stock EAC_GetCheatNameAC(cheatid) // Returns the name of the cheat with base no index
stock EAC_ReloadSettings(const file[]) // If you change the configuration file, you can reload the configuration in real time without restarting or reloading the filterscript
stock EAC_Auth(const token[]) // Authenticate the anti-cheat token to enable it
Damage control:
Code: stock EWD_SetPlayerWeaponRange(playerid, weaponid, Float:range) // Change the range of a given weapon for the player
stock Float:EWD_GetPlayerWeaponRange(playerid, weaponid) // Returns the range of a given weapon for the player
stock EWD_SetPlayerWeaponDamage(playerid, weaponid, Float:amount) // Change the damage of a given weapon for the player
stock Float:EWD_GetPlayerWeaponDamage(playerid, weaponid) // Returns the damage of a given weapon of the player
stock EWD_SetPlayerBodyHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage of a given weapon and body part for the player
stock Float:EWD_GetPlayerBodyHitDamage(playerid, weaponid, bodypart) // Returns the damage of a given weapon and body part for the player
stock EWD_BlockPlayerBodyHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage block of a given weapon and body part for the player
stock Float:EWD_GetPlayerBlockedBodyHitDamage(playerid, weaponid, bodypart) // Returns the damage block of a given weapon and body part for the player
stock EWD_BlockPlayerArmourHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage block of a given weapon, exclusively if wearing a vest, for the player
stock Float:EWD_GetPlayerBlockedArmourHitDamage(playerid, weaponid, bodypart) // Returns the damage block of a given weapon, exclusively if using a vest, of the player
stock EWD_TogglePlayerGiveBulletDamage(playerid, bool:toggle) // Enables/Disables the damage sent from the player
stock EWD_IsPlayerGivingBulletDamage(playerid) // Returns whether the damage sent from the player is enabled or not
stock EWD_TogglePlayerTakeBulletDamage(playerid, bool:toggle) // Enables/Disables the damage received from the player
stock EWD_IsPlayerTakingBulletDamage(playerid) // Returns whether the damage received from the player is enabled or not
stock EWD_EnablePlayerFriendlyFire(playerid, bool:enable) // Enables/Disables the damage sent to players on the same team
Additional functions:
Code: stock EAC_SetPlayerGodMode(playerid, bool:active) // Enables/Disables player's God mode
stock EAC_IsPlayerInGodMode(playerid) // Returns whether the player is in God mode or not
stock EAC_SetPlayerMoney(playerid, money) // Sets the player's money
stock EAC_UpdatePlayerMoney(playerid) // Only updates the player's money on the screen based on the anti-cheat memory
stock EAC_GetPlayerFreeAttachedObjectSlot(playerid) // Returns the first free slot for attacked objects on the player's body
stock EAC_GetPlayerAttachedObjectModelIndex(playerid, modelid) // Returns the index of the attacked object on the player's body based on the object's model
stock EAC_GetPlayerAttachedObjectModel(playerid, index) // Returns the model of the attacked object on the player's body player based on the anti-cheat's index and memory (and not on the client's date)
stock EAC_ApplyPlayerAttachedObjects(playerid) // Applies the attacked objects to the player's body based on the anti-cheat's memory
stock EAC_GiveAllPlayerWeapons(playerid, delay = 0) // Resets the player's weapons and provides those in the anti-cheat's memory, with the option to apply with a delay
stock EAC_GetPlayerWeaponData(playerid, slot, &weapons, &ammo) // Returns the player's weapons, based on the anti-cheat's memory (and not on the client's date)
stock EAC_SetPlayerWeapon(playerid, weaponid, ammo) // Sets a specific weapon for the player
stock EAC_IsValidPlayerWeapon(playerid, weaponid) // Returns whether a given player's weapon was designed based on the server (and not on the client's date) client)
Project maintenance:
Despite being recent, it is a solid, stable and extremely optimized project. Always focused on improvements and new implementations
Server where it is being tested:
If you are interested in checking the anti-cheat and its effectiveness, just access the server below:
Os Aposented PvP: 104.234.224.87:7777
More information:
Discord: https://discord.gg/cuFaYC9UMQ
Now you can:- Interact with a custom Bot for key and payment automation
- Report bugs
- Send feedback
- Private call with me to discuss anti-cheat
- Download
Translated from portalsamp.
|
|
|
|
Developer for Hire – Systems, Bug Fixes, Snippets & More |
|
Posted by: ejtamovic - 2025-07-04, 08:35 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
Hey everyone,
I’m offering my development services for any kind of SA-MP/open.mp server – roleplay, freeroam, TDM, or something custom. I’ve been scripting for 8+ years and can help with pretty much anything PAWN-related.
What I can do:
- Build full systems (admin, jobs, inventories, etc.)
- Fix bugs and optimise existing code
- Write small scripts or specific features/snippets
- Work with MySQL, YSI, streamer, sscanf2, etc.
- Basically, anything from small tweaks to full-feature development
I have a background in web development, so if you ever need something that combines both (like APIs, etc.), I can help there too.
Pricing:
- Per hour or per feature – whatever works best for the task
- Fair rates depending on what you need
If you are interested, just shoot me a private message here on the forum and we can chat about what you need.
|
|
|
|
| GameText styles in open.mp |
|
Posted by: Miki - 2025-06-28, 10:52 AM - Forum: Pawn Scripting
- Replies (2)
|
 |
Hello, I've started implementing zones in my gamemode and I wanted to show them as GameTextForPlayer style 8 like in singleplayer, but unfortunately it doesn't work while the rest of the styles (that were already in SA-MP without fixes.inc) do. I've read on official docs that fixes.inc contained all the other ones, but i thought open.mp already has most of the fixes.inc and YSF stuff. How do I get style 8 to work?
|
|
|
|
| RevolutionX DM/Stunt/Race/Fun [Open.Mp] |
|
Posted by: DerekZ905 - 2025-06-18, 03:12 PM - Forum: Advertisements
- No Replies
|
 |
What are We?
RevolutionX SINCE 2008 is a server with a supply of endless fun. We pack as much as we can into our server. We have mini-games, racing, death matching, Duel system, Vehicle Duels, goo hidden system, pick up compition find pick ups around the maps like horse shoes or custom set by admin, fancy house system and so much more to explore and try. Minigames and more.
What Makes Us Different
It's hard to explain what makes us different. In SA-MP/Open.Mp, It can be very difficult to become a unique server without taking ideas from other servers. For one, all of our ideas are original. Our server is easy to use. When a player spawns, they can head to a small icons which tells them some important information they need to know. With over 1400+ commands (and more being added everyday) there is always something new to try. We also have cmds for spawning vehicles, and selecting your skin. if you have s&smp maps like gta3 and vicecity and more you can test them in our server we have locations /gta3 /vicecity
Vid https://www.youtube.com/watch?v=4asHRDXpQRc&t=5s
OPEN.MP SERVER IP `185.239.239.92:7777`
Discord https://discord.gg/NSWmpeXawh
![[Image: Screenshot-82.png]](https://i.ibb.co/zdrJjV2/Screenshot-82.png)
![[Image: Screenshot-83.png]](https://i.ibb.co/B5ZFhqDJ/Screenshot-83.png)
![[Image: Screenshot-84.png]](https://i.ibb.co/LKrFtzP/Screenshot-84.png)
![[Image: Screenshot-85.png]](https://i.ibb.co/8DZfhKhz/Screenshot-85.png)
![[Image: Screenshot-87.png]](https://i.ibb.co/wh4Rr93x/Screenshot-87.png)
|
|
|
|
samp-cef |
|
Posted by: jamespssamp - 2025-06-18, 11:36 AM - Forum: Questions and Suggestions
- No Replies
|
 |
Hello everyone. I have some difficulties with rendering a web page via CEF inside the game. The thing is that I use white colors in the interfaces, but do not use the background (transparent). And from somewhere artifacts appear in the form of a black outline (1-3 pixels) around white elements. What could this be connected with? With the layout or the CEF plugin?
|
|
|
|
| Offering Pawn Scripting Services |
|
Posted by: Mido - 2025-06-07, 01:30 PM - Forum: Pawn Scripting
- No Replies
|
 |
I have a lot of free time this summer and I am offering scripting services for SA\:MP and open.mp servers. If you need bugs fixed, new features added, or a full gamemode written, feel free to reach out.
What am I offering?
I am offering Pawn scripting services for SA\:MP and open.mp servers and communities. You can hire me to fix bugs, add new features, develop a new gamemode from scratch, or even fully convert an existing gamemode to open.mp.
What can I do?
- Fix bugs and issues in existing scripts.
- Write new features and systems.
- Develop full gamemodes from the ground up.
- Fully convert gamemodes to open.mp.
- Clean up and optimize code.
- And pretty much anything that involves Pawn scripting.
How can you pay me?
At the moment, I only accept payment via Western Union or any other simple international method (no hassle).
How do you contact me?
Just DM me on Discord, my user handle `justmido` or you can find me in the open.mp discord. Feel free to give me as much detail as possible about what you need - the more info I have, the better I can make it work for you.
Are you open to ongoing work?
Yes. I can take both one-time tasks and long-term projects.
How much does it cost?
It depends on the work - simple fixes will naturally cost less than complex systems or full gamemodes. Once you tell me what you need, I will give you a fair and clear price before starting.
Do you have any work to show?
Most of the projects I work on are done behind the scenes - I do not record, publish, or showcase them publicly. If you are looking for someone who works quietly and delivers solid results, you can trust that I know what I am doing.
|
|
|
|
| Script[gamemodes/gamemode.amx]: Run time error 19: "File or function is not found" |
|
Posted by: jeppe9821 - 2025-06-01, 09:27 AM - Forum: Pawn Scripting
- Replies (1)
|
 |
Hello! I'm struggling to include the library "YSI_Include". I'm getting this runtime error, here are my server.log:
Code: SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team
Server Plugins
--------------
Loading plugin: sscanf
===============================
sscanf plugin loaded.
Version: 2.13.8
(c) 2022 Alex "Y_Less" Cole
===============================
Loaded.
Loaded 1 plugins.
Started server on port: 7777, with maxplayers: 32 lanmode is OFF.
Filterscripts
---------------
Loading filterscript 'login.amx'...
-----------------------------------
| Login filterscript loaded |
-----------------------------------
Loading filterscript 'debug.amx'...
-----------------------------------
| Debug filterscript loaded |
-----------------------------------
Loaded 2 filterscripts.
Script[gamemodes/gamemode.amx]: Run time error 19: "File or function is not found"
Number of vehicle models: 0
I'm using sampCTL for building & running
I have "sscanf.dll" in my plugins folder
|
|
|
|
|