Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update broken plugins list #961

Merged
merged 1 commit into from
Aug 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions Server/Components/Pawn/PluginManager/PluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,27 @@ static const StaticArray<BrokenPluginMessageData, 23> 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" },
}
};

Expand Down
Loading