From 1de96bb628c7e096666b49958c75483b2a2bcbd1 Mon Sep 17 00:00:00 2001 From: Nexius Date: Sat, 10 Aug 2024 09:06:46 +0300 Subject: [PATCH] Add `bscrashfix` and remove `rustext` from the relevant list of broken (memhack) plugins --- .../Pawn/PluginManager/PluginManager.cpp | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Server/Components/Pawn/PluginManager/PluginManager.cpp b/Server/Components/Pawn/PluginManager/PluginManager.cpp index bb74a6597..ecf2a7df5 100644 --- a/Server/Components/Pawn/PluginManager/PluginManager.cpp +++ b/Server/Components/Pawn/PluginManager/PluginManager.cpp @@ -22,25 +22,27 @@ static const StaticArray BrokenPlugins = { { "YSF_DL", "It requires memory hacking to run and is therefore broken on open.mp, we already added many built-in features from YSF to open.mp and the rest are coming" }, { "YSF_static", "It requires memory hacking to run and is therefore broken on open.mp, we already added many built-in features from YSF to open.mp and the rest are coming" }, { "YSF_DL_static", "It requires memory hacking to run and is therefore broken on open.mp, we already added many built-in features from YSF to open.mp and the rest are coming" }, - { "pawnraknet", "There is an open.mp compatible version you can find here: https://github.com/katursis/Pawn.RakNet/releases , make sure to download x.x.x-omp version." }, - { "pawncmd", "There is an open.mp compatible version you can find here: https://github.com/katursis/Pawn.CMD/releases , make sure to download x.x.x-omp version." }, { "SKY", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "FCNPC", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "FCNPC-DL", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "sampcac_server", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, - { "sampvoice", "There is an open.mp compatible version you can find here: https://github.com/AmyrAhmady/sampvoice/releases , make sure to download x.x.x-omp version." }, - { "rustext", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "ASAN", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, - { "nativechecker", "It is not needed anymore since open.mp has built in native checking mechanism when a script is being loaded" }, - { "samp-compat", "It is not needed anymore since open.mp has built in compat mechanism between 0.3.7 and 0.3DL versions" }, - { "LFN", "It is not needed anymore since open.mp has support for longer function names, just compile your scripts with our compiler" }, { "samp-custom-query-flood-check", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "AntiVehicleSpawn", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "mcmd", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, - { "raktimefix", "It is not needed anymore since open.mp has no stability issues on the latest linux systems" }, { "KeyListener", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "chandlingsvr", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, { "samp_akm", "It requires memory hacking to run and is therefore broken on open.mp. There should be a replacement component supported by open.mp" }, + + { "pawnraknet", "There is an open.mp compatible version you can find here: https://github.com/katursis/Pawn.RakNet/releases , make sure to download x.x.x-omp version." }, + { "pawncmd", "There is an open.mp compatible version you can find here: https://github.com/katursis/Pawn.CMD/releases , make sure to download x.x.x-omp version." }, + { "sampvoice", "There is an open.mp compatible version you can find here: https://github.com/AmyrAhmady/sampvoice/releases , make sure to download x.x.x-omp version." }, + + { "nativechecker", "It is not needed anymore since open.mp has built in native checking mechanism when a script is being loaded" }, + { "samp-compat", "It is not needed anymore since open.mp has built in compat mechanism between 0.3.7 and 0.3DL versions" }, + { "LFN", "It is not needed anymore since open.mp has support for longer function names, just compile your scripts with our compiler" }, + { "raktimefix", "It is not needed anymore since open.mp has no stability issues on the latest linux systems" }, + { "bscrashfix", "It is not needed anymore since open.mp has no raknet layer issues causing to crashes" }, } };