<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[open.mp forum - Libraries]]></title>
		<link>https://forum.open.mp/</link>
		<description><![CDATA[open.mp forum - https://forum.open.mp]]></description>
		<pubDate>Sat, 11 Apr 2026 19:30:10 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[MAP Hot Loader / Map Manager]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3814</link>
			<pubDate>Sat, 28 Feb 2026 05:13:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7919">selmir.beha</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3814</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><a href="https://github.com/selmir55/-open-mp-MAP-Hot-Loader-Map-Manager" target="_blank" rel="noopener" class="mycode_url">https://github.com/selmir55/-open-mp-MAP...ap-Manager</a><br />
</span></div>
* =============================================================================<br />
* <span style="font-weight: bold;" class="mycode_b"> MAP LOADER / MAP MANAGER - Hot load maps without server restart</span><br />
* =============================================================================<br />
*<br />
*  ENGLISH:<br />
*  Load and unload maps from .txt files at runtime. Requires streamer plugin.<br />
*  Place map files in scriptfiles/maps/ (e.g. mymap.txt). Optional remove<br />
*  file: mymapremove.txt (RemoveBuildingForPlayer lines).<br />
*<br />
*  USAGE:<br />
*    #include &lt;streamer&gt;<br />
*    #include &lt;map_loader&gt;<br />
*<br />
*    LoadMap("map_name");                    - load map (OnGameModeInit or anytime)<br />
*    LoadMap("map_name", playerid);          - load and send stream update to that player<br />
*    UnloadMap("map_name");                  - destroy all objects of that map<br />
*    ReloadMap("map_name"[, playerid]);      - unload then load<br />
*<br />
*  COMMANDS (requires PAWNCMD_INC_ and RCON admin):<br />
*    /mapreload [map_name]  - load or reload a map<br />
*    /mapremove [map_name]  - load ime_mape_remove.txt and apply remove building to all players<br />
*<br />
*  SUPPORTED FORMATS IN .txt:<br />
*    CreateObject, CreatePlayerObject, CreateDynamicObject, CreateDynamicObjectEx<br />
*    SetObjectMaterial / SetDynamicObjectMaterial, SetObjectMaterialText / SetDynamicObjectMaterialText<br />
*    Raw numbers (modelid x y z rx ry rz ...), remove: RemoveBuildingForPlayer(...) or 5 numbers per line<br />
*<br />
*  OPTIONAL DEFINES BEFORE INCLUDE:<br />
*    MAPLOADER_MAX_MAPS, MAPLOADER_MAX_OBJECTS_PER_MAP, MAPLOADER_PATH_PREFIX,<br />
*    MAPLOADER_FILE_EXT, MAPLOADER_DEFAULT_STREAM_DISTANCE, MAPLOADER_BATCH_SIZE, etc.<br />
*<br />
* -----------------------------------------------------------------------------<br />
*  AUTHOR:  William Sparrow (sparrowww.aMx)<br />
*  FORUM:    <a href="https://gtablkn.gg/profile/27196" target="_blank" rel="noopener" class="mycode_url">https://gtablkn.gg/profile/27196</a><br />
*  FACEBOOK: <a href="https://www.facebook.com/william.sparrow.5203" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/william.sparrow.5203</a><br />
*  YOUTUBE:  <a href="https://www.youtube.com/@williamsparrow6053" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/@williamsparrow6053</a><br />
*  Made for Fusion Gaming, released for the community.<br />
* =============================================================================<br />
*<br />
*  BALKAN:<br />
*  Ucitavanje i brisanje mapa iz .txt fajlova u runtime-u. Koristi streamer<br />
*  plugin. Mape stavite u scriptfiles/maps/ (npr. mojamapa.txt). Opciono<br />
*  remove fajl: mojamaparemove.txt (RemoveBuildingForPlayer linije).<br />
*<br />
*  KORISTENJE:<br />
*    #include &lt;streamer&gt;<br />
*    #include &lt;map_loader&gt;<br />
*<br />
*    LoadMap("ime_mape");                    - ucitaj mapu (OnGameModeInit ili bilo kada)<br />
*    LoadMap("ime_mape", playerid);          - ucitaj i posalji stream update tom igracu<br />
*    UnloadMap("ime_mape");                  - obrisi sve objekte te mape<br />
*    ReloadMap("ime_mape"[, playerid]);      - unload pa load<br />
*<br />
*  KOMANDE (zahtijeva PAWNCMD_INC_ i RCON admin):<br />
*    /mapreload [ime_mape]  - ucitaj ili ponovo ucitaj mapu<br />
*    /mapremove [ime_mape]  - ucitaj ime_mape_remove.txt i primijeni remove building na sve igrace<br />
*<br />
*  PODRZANI FORMATI U .txt:<br />
*    CreateObject, CreatePlayerObject, CreateDynamicObject, CreateDynamicObjectEx<br />
*    SetObjectMaterial / SetDynamicObjectMaterial, SetObjectMaterialText / SetDynamicObjectMaterialText<br />
*    Cisti brojevi (modelid x y z rx ry rz ...), remove: RemoveBuildingForPlayer(...) ili 5 brojeva<br />
*<br />
*  OPCIONO DEFINIRATI PRIJE INCLUDE-A:<br />
*    MAPLOADER_MAX_MAPS, MAPLOADER_MAX_OBJECTS_PER_MAP, MAPLOADER_PATH_PREFIX,<br />
*    MAPLOADER_FILE_EXT, MAPLOADER_DEFAULT_STREAM_DISTANCE, MAPLOADER_BATCH_SIZE, itd.<br />
*<br />
*  AUTOR:    William Sparrow (sparrowww.aMx)<br />
*  FORUM:    <a href="https://gtablkn.gg/profile/27196" target="_blank" rel="noopener" class="mycode_url">https://gtablkn.gg/profile/27196</a><br />
*  FACEBOOK: <a href="https://www.facebook.com/william.sparrow.5203" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/william.sparrow.5203</a><br />
*  YOUTUBE:  <a href="https://www.youtube.com/@williamsparrow6053" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/@williamsparrow6053</a><br />
*  Napravljeno za Fusion Gaming, objavljeno za zajednicu.<br />
* =============================================================================<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/DMbdreRQcaQ" frameborder="0" allowfullscreen="true"></iframe><br />
<br />
<a href="https://github.com/selmir55/-open-mp-MAP-Hot-Loader-Map-Manager" target="_blank" rel="noopener" class="mycode_url">https://github.com/selmir55/-open-mp-MAP...ap-Manager</a></span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><a href="https://github.com/selmir55/-open-mp-MAP-Hot-Loader-Map-Manager" target="_blank" rel="noopener" class="mycode_url">https://github.com/selmir55/-open-mp-MAP...ap-Manager</a><br />
</span></div>
* =============================================================================<br />
* <span style="font-weight: bold;" class="mycode_b"> MAP LOADER / MAP MANAGER - Hot load maps without server restart</span><br />
* =============================================================================<br />
*<br />
*  ENGLISH:<br />
*  Load and unload maps from .txt files at runtime. Requires streamer plugin.<br />
*  Place map files in scriptfiles/maps/ (e.g. mymap.txt). Optional remove<br />
*  file: mymapremove.txt (RemoveBuildingForPlayer lines).<br />
*<br />
*  USAGE:<br />
*    #include &lt;streamer&gt;<br />
*    #include &lt;map_loader&gt;<br />
*<br />
*    LoadMap("map_name");                    - load map (OnGameModeInit or anytime)<br />
*    LoadMap("map_name", playerid);          - load and send stream update to that player<br />
*    UnloadMap("map_name");                  - destroy all objects of that map<br />
*    ReloadMap("map_name"[, playerid]);      - unload then load<br />
*<br />
*  COMMANDS (requires PAWNCMD_INC_ and RCON admin):<br />
*    /mapreload [map_name]  - load or reload a map<br />
*    /mapremove [map_name]  - load ime_mape_remove.txt and apply remove building to all players<br />
*<br />
*  SUPPORTED FORMATS IN .txt:<br />
*    CreateObject, CreatePlayerObject, CreateDynamicObject, CreateDynamicObjectEx<br />
*    SetObjectMaterial / SetDynamicObjectMaterial, SetObjectMaterialText / SetDynamicObjectMaterialText<br />
*    Raw numbers (modelid x y z rx ry rz ...), remove: RemoveBuildingForPlayer(...) or 5 numbers per line<br />
*<br />
*  OPTIONAL DEFINES BEFORE INCLUDE:<br />
*    MAPLOADER_MAX_MAPS, MAPLOADER_MAX_OBJECTS_PER_MAP, MAPLOADER_PATH_PREFIX,<br />
*    MAPLOADER_FILE_EXT, MAPLOADER_DEFAULT_STREAM_DISTANCE, MAPLOADER_BATCH_SIZE, etc.<br />
*<br />
* -----------------------------------------------------------------------------<br />
*  AUTHOR:  William Sparrow (sparrowww.aMx)<br />
*  FORUM:    <a href="https://gtablkn.gg/profile/27196" target="_blank" rel="noopener" class="mycode_url">https://gtablkn.gg/profile/27196</a><br />
*  FACEBOOK: <a href="https://www.facebook.com/william.sparrow.5203" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/william.sparrow.5203</a><br />
*  YOUTUBE:  <a href="https://www.youtube.com/@williamsparrow6053" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/@williamsparrow6053</a><br />
*  Made for Fusion Gaming, released for the community.<br />
* =============================================================================<br />
*<br />
*  BALKAN:<br />
*  Ucitavanje i brisanje mapa iz .txt fajlova u runtime-u. Koristi streamer<br />
*  plugin. Mape stavite u scriptfiles/maps/ (npr. mojamapa.txt). Opciono<br />
*  remove fajl: mojamaparemove.txt (RemoveBuildingForPlayer linije).<br />
*<br />
*  KORISTENJE:<br />
*    #include &lt;streamer&gt;<br />
*    #include &lt;map_loader&gt;<br />
*<br />
*    LoadMap("ime_mape");                    - ucitaj mapu (OnGameModeInit ili bilo kada)<br />
*    LoadMap("ime_mape", playerid);          - ucitaj i posalji stream update tom igracu<br />
*    UnloadMap("ime_mape");                  - obrisi sve objekte te mape<br />
*    ReloadMap("ime_mape"[, playerid]);      - unload pa load<br />
*<br />
*  KOMANDE (zahtijeva PAWNCMD_INC_ i RCON admin):<br />
*    /mapreload [ime_mape]  - ucitaj ili ponovo ucitaj mapu<br />
*    /mapremove [ime_mape]  - ucitaj ime_mape_remove.txt i primijeni remove building na sve igrace<br />
*<br />
*  PODRZANI FORMATI U .txt:<br />
*    CreateObject, CreatePlayerObject, CreateDynamicObject, CreateDynamicObjectEx<br />
*    SetObjectMaterial / SetDynamicObjectMaterial, SetObjectMaterialText / SetDynamicObjectMaterialText<br />
*    Cisti brojevi (modelid x y z rx ry rz ...), remove: RemoveBuildingForPlayer(...) ili 5 brojeva<br />
*<br />
*  OPCIONO DEFINIRATI PRIJE INCLUDE-A:<br />
*    MAPLOADER_MAX_MAPS, MAPLOADER_MAX_OBJECTS_PER_MAP, MAPLOADER_PATH_PREFIX,<br />
*    MAPLOADER_FILE_EXT, MAPLOADER_DEFAULT_STREAM_DISTANCE, MAPLOADER_BATCH_SIZE, itd.<br />
*<br />
*  AUTOR:    William Sparrow (sparrowww.aMx)<br />
*  FORUM:    <a href="https://gtablkn.gg/profile/27196" target="_blank" rel="noopener" class="mycode_url">https://gtablkn.gg/profile/27196</a><br />
*  FACEBOOK: <a href="https://www.facebook.com/william.sparrow.5203" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/william.sparrow.5203</a><br />
*  YOUTUBE:  <a href="https://www.youtube.com/@williamsparrow6053" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/@williamsparrow6053</a><br />
*  Napravljeno za Fusion Gaming, objavljeno za zajednicu.<br />
* =============================================================================<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/DMbdreRQcaQ" frameborder="0" allowfullscreen="true"></iframe><br />
<br />
<a href="https://github.com/selmir55/-open-mp-MAP-Hot-Loader-Map-Manager" target="_blank" rel="noopener" class="mycode_url">https://github.com/selmir55/-open-mp-MAP...ap-Manager</a></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[samp-essentials]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3803</link>
			<pubDate>Sat, 07 Feb 2026 12:51:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4616">1NS</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3803</guid>
			<description><![CDATA[<img src="https://github.com/ins1x/sa-essentials/raw/main/CLEO/(for%20developers)/gta-sa-lib-pack-essentials.png" loading="lazy"  alt="[Image: gta-sa-lib-pack-essentials.png]" class="mycode_img" /><br />
<br />
A pack of necessary libs for the correct operation of <a href="https://sampwiki.blast.hk/" target="_blank" rel="noopener" class="mycode_url">GTA San Andreas Multiplayer (SA-MP)</a> and mods.<br />
Repository forked form <a href="https://github.com/JuniorDjjr" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b">JuniorDjjr</span></a> <a href="https://www.mixmods.com.br/2019/06/sa-essentials-pack/" target="_blank" rel="noopener" class="mycode_url"><span style="font-style: italic;" class="mycode_i">sa-essentials-pack</span></a>. This set is wider than the original one, but does not contain fixes and third-party mods! Only the original versions of the libraries are collected here. The list of all libraries and their repositories is below.<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size">How use it</span></span><br />
<br />
You should already have <a href="https://www.sa-mp.mp/downloads/" target="_blank" rel="noopener" class="mycode_url">GTA:SA and SA:MP</a> installed. You can install all the necessary libraries at once, and not waste time installing them individually. Or you can just as quickly find the missing libraries and download them separately without worrying about authenticity.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">What the pack contains</span><br />
<br />
Loaders:<ul class="mycode_list"><li><a href="https://gtaforums.com/topic/669520-mod-loader/" target="_blank" rel="noopener" class="mycode_url">ModLoader</a> - is a plugin for Grand Theft Auto III, Vice City and San Andreas that adds an easy and user-friendly way to install and uninstall modifications into the game<br />
</li>
<li><a href="https://gtaforums.com/topic/890987-moonloader/" target="_blank" rel="noopener" class="mycode_url">Moonloader</a> - is a modification for GTA: San Andreas that brings new ability to use Lua scripts made by mods creators.<br />
</li>
<li><a href="http://www.gtagarage.com/mods/show.php?id=21709" target="_blank" rel="noopener" class="mycode_url">Silents ASI Loader</a> - This is a DLL file which adds ASI plugin loading functionality to San Andreas.<br />
</li>
</ul>
<br />
CLEO:<ul class="mycode_list"><li><a href="http://cleo.li/download.html" target="_blank" rel="noopener" class="mycode_url">CLEO 4</a> - is a hugely popular extensible library plugin which brings new possibilities in scripting for the game Grand Theft Auto: San Andreas by Rockstar Games, allowing the use of thousands of unique mods which change or expand the gameplay.<br />
</li>
<li><a href="https://www.mixmods.com.br/2023/10/cleoplus/" target="_blank" rel="noopener" class="mycode_url">CLEO +</a> - a CLEO 4 plugin by Junior_Djjr adding about 300 new opcodes<br />
</li>
<li><a href="https://www.blast.hk/threads/17/" target="_blank" rel="noopener" class="mycode_url">SAMPFUNCS 5.4</a> - is an add-on to the CLEO 4 library, globally expanding the capabilities of scriptwriters.<br />
</li>
</ul>
See the <a href="https://cleo.li/plugins" target="_blank" rel="noopener" class="mycode_url">https://cleo.li/plugins</a> for some of the available <a href="https://cleo.li/download.html#plugins" target="_blank" rel="noopener" class="mycode_url">CLEO plugins</a>.<br />
<br />
Moonloader modules:<ul class="mycode_list"><li><a href="https://github.com/Corenale/carbJsonConfigLua" target="_blank" rel="noopener" class="mycode_url">carbJsonConfigLua</a> - handling JSON configuration files, with special support for FFI cdata structures.<br />
</li>
<li><a href="https://github.com/openresty/lua-cjson/tree/master" target="_blank" rel="noopener" class="mycode_url">cjson</a> - Lua CJSON is a fast JSON encoding/parsing module for Lua<br />
</li>
<li><a href="https://github.com/lunarmodules/lua-compat-5.3" target="_blank" rel="noopener" class="mycode_url">compat</a> - Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1<br />
</li>
<li><a href="https://github.com/lunarmodules/copas/tree/master" target="_blank" rel="noopener" class="mycode_url">copas</a> - Dispatcher based on coroutines that can be used by TCP/IP servers<br />
</li>
<li><a href="https://github.com/effil/effil" target="_blank" rel="noopener" class="mycode_url">effil</a> - Multithreading support for Lua<br />
</li>
<li><a href="https://github.com/xARMORx/EntityRender" target="_blank" rel="noopener" class="mycode_url">EntityRender</a> - Library allows rendering entities in mimgui (peds, transport, objects).<br />
</li>
<li><a href="https://gitlab.com/THE-FYP/lua-fa-icons-4" target="_blank" rel="noopener" class="mycode_url">fa-icons</a> - Font Awesome 4 Icons + Font for Lua<br />
</li>
<li><a href="https://www.blast.hk/threads/111224/" target="_blank" rel="noopener" class="mycode_url">fAwesome</a> - Pack fAwesome fonts v4,v5,v6<br />
</li>
<li><a href="https://www.blast.hk/threads/55743/" target="_blank" rel="noopener" class="mycode_url">hooks</a> - Lua vmt+jmp/call hook<br />
</li>
<li><a href="https://github.com/msva/lua-htmlparser" target="_blank" rel="noopener" class="mycode_url">htmlparse</a> - An HTML parser for lua<br />
</li>
<li><a href="https://github.com/kikito/inspect.lua" target="_blank" rel="noopener" class="mycode_url">inspect</a> - Human-readable representation of Lua tables<br />
</li>
<li><a href="https://github.com/ocornut/imgui" target="_blank" rel="noopener" class="mycode_url">imgui</a> - ImGui Bloat-free Graphical User interface with minimal dependencies<br />
</li>
<li><a href="https://www.blast.hk/threads/27544/" target="_blank" rel="noopener" class="mycode_url">Imgui Addons</a> - collects several elements for imgui into one common library<br />
</li>
<li><a href="https://luarocks.org/modules/benoitgermain/lanes" target="_blank" rel="noopener" class="mycode_url">lanes</a> - Lanes is a lightweight, native, lazy evaluating multithreading library for Lua<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/lbase64" target="_blank" rel="noopener" class="mycode_url">lbase64</a> - A Base64 library for Lua<br />
</li>
<li><a href="https://github.com/zhuomingliang/luatcc" target="_blank" rel="noopener" class="mycode_url">luatcc</a> - Luatcc is a Lua binding for libtcc<br />
</li>
<li><a href="https://luarocks.org/modules/gvvaughan/lpeg" target="_blank" rel="noopener" class="mycode_url">LPeg</a> - A pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs)<br />
</li>
<li><a href="https://luarocks.org/modules/rrt/lrexlib-pcre" target="_blank" rel="noopener" class="mycode_url">Lrexlib-PCRE</a> - Is a regular expression library, which provides bindings for POSIX and PCRE regular expression libs<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/luafilesystem" target="_blank" rel="noopener" class="mycode_url">LuaFileSystem</a> - File System Library for the Lua Programming Language<br />
</li>
<li><a href="https://github.com/THE-FYP/lua-requests" target="_blank" rel="noopener" class="mycode_url">lua-requests</a> - The same friendly Python Requests interface for Lua<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/luasec" target="_blank" rel="noopener" class="mycode_url">LuaSec</a> - A binding for OpenSSL library to provide TLS/SSL communication over LuaSocket<br />
</li>
<li><a href="https://lunarmodules.github.io/luasql" target="_blank" rel="noopener" class="mycode_url">luasql-sqlite</a> - Is a simple interface from Lua to a DBMS Sqlite<br />
</li>
<li><a href="https://github.com/lunarmodules/luasocket" target="_blank" rel="noopener" class="mycode_url">lua-socket</a> - Network support for the Lua language<br />
</li>
<li><a href="https://luajit.org/" target="_blank" rel="noopener" class="mycode_url">LuaJIT</a> - Just-In-Time Compiler for Lua<br />
</li>
<li><a href="https://github.com/rxi/lume" target="_blank" rel="noopener" class="mycode_url">lume</a> - A collection of functions for Lua, geared towards game development<br />
</li>
<li><a href="https://luarocks.org/modules/luarocks/lustache" target="_blank" rel="noopener" class="mycode_url">lustache</a> - Logic-less mustache templates with Lua<br />
</li>
<li><a href="https://github.com/THE-FYP/mimgui" target="_blank" rel="noopener" class="mycode_url">mimgui</a> - Dear ImGui for MoonLoader<br />
</li>
<li><a href="https://www.blast.hk/threads/127255/" target="_blank" rel="noopener" class="mycode_url">Mimgui Addons</a> - collects several elements for mimgui into one common library<br />
</li>
<li><a href="https://github.com/THE-FYP/MoonAdditions" target="_blank" rel="noopener" class="mycode_url">MoonAdditions</a> - A bunch of useful things for MoonLoader<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/moonloader-bind" target="_blank" rel="noopener" class="mycode_url">moonloader-bind</a> - Events for common tasks<br />
</li>
<li><a href="https://github.com/Northn/MoonMonet" target="_blank" rel="noopener" class="mycode_url">MoonMonet</a> - A library that generates Monet-style color accents<br />
</li>
<li><a href="https://github.com/moteus/lua-path" target="_blank" rel="noopener" class="mycode_url">path</a> - File system path manipulation library<br />
</li>
<li><a href="https://luarocks.org/modules/steved/penlight" target="_blank" rel="noopener" class="mycode_url">penlight</a> - A set of pure Lua libraries focusing on input data handling<br />
</li>
<li><a href="https://www.blast.hk/threads/69433/" target="_blank" rel="noopener" class="mycode_url">RakLua</a> - A new library for interacting with RakNet and BitStream<br />
</li>
<li><a href="https://github.com/AnWuPP/rkeys" target="_blank" rel="noopener" class="mycode_url">RKeys</a> - Register HotKey for MoonLoader<br />
</li>
<li><a href="https://github.com/imring/SAMP-API.lua" target="_blank" rel="noopener" class="mycode_url">SAMP-API</a> - adds structures and functions from SA:MP<br />
</li>
<li><a href="https://github.com/THE-FYP/SAMP.Lua" target="_blank" rel="noopener" class="mycode_url">SAMP.Lua</a> - A SA-MP API library for MoonLoader<br />
</li>
<li><a href="https://github.com/SF-lua/SF.lua" target="_blank" rel="noopener" class="mycode_url">SFlua</a> - SA:MP functions for MoonLoader<br />
</li>
<li><a href="https://github.com/SLMP-Team/SNET" target="_blank" rel="noopener" class="mycode_url">SNET</a> - Cross-platform, open source, network library<br />
</li>
<li><a href="https://github.com/c0sui/lua_strings" target="_blank" rel="noopener" class="mycode_url">strings</a> - Custom string methods for the lua<br />
</li>
<li><a href="https://github.com/neverlane/moon-tabler-icons" target="_blank" rel="noopener" class="mycode_url">tabler-icons</a> - tabler.io icons for lua<br />
</li>
<li><a href="https://github.com/lubyk/xml" target="_blank" rel="noopener" class="mycode_url">xml</a> - Very fast and simple XML parser for Lua based on RapidXML 1.13<br />
</li>
</ul>
See the <a href="https://luarocks.org/modules/fyp" target="_blank" rel="noopener" class="mycode_url">https://luarocks.org/modules/fyp</a> for some of the available <a href="https://github.com/orgs/lunarmodules/repositories?type=all" target="_blank" rel="noopener" class="mycode_url">Lua modules</a>.<br />
<br />
Audio libs:<ul class="mycode_list"><li><a href="https://gamedev.ru/code/terms/EAX" target="_blank" rel="noopener" class="mycode_url">eax.dll</a> - Environmental Audio Extensions<br />
</li>
<li><a href="https://www.un4seen.com/" target="_blank" rel="noopener" class="mycode_url">bassmix.dll</a> - BASS audio library<br />
</li>
<li><a href="https://www.un4seen.com/doc/#bass/bass_fx.html" target="_blank" rel="noopener" class="mycode_url">bass_fx.dll</a> - is an extension to the BASS audio library, provides several effects, including tempo &amp; pitch control<br />
</li>
<li><a href="https://www.un4seen.com/doc/#basswasapi/basswasapi.html" target="_blank" rel="noopener" class="mycode_url">basswasapi.dll</a> - is an extension to the BASS audio library, providing the ability to use WASAPI output and input<br />
</li>
<li><a href="https://www.rarewares.org/ogg-libraries.php" target="_blank" rel="noopener" class="mycode_url">ogg.dll</a> - Ogg Vorbis Dynamic Link Library<br />
</li>
<li><a href="https://xiph.org/vorbis/" target="_blank" rel="noopener" class="mycode_url">vorbis.dll</a> - Vorbis Dynamic Link Library<br />
<br />
</li>
</ul>
MSVC Redist:<ul class="mycode_list"><li><a href="https://www.mixmods.com.br/2015/08/download-de-todas-as-dll-que-voce-precisa/" target="_blank" rel="noopener" class="mycode_url">msvcr100d.dll</a> - Microsoft Visual C++ Redistributable (MSVC) Debug<br />
</li>
</ul>
See the <a href="https://github.com/abbodi1406/vcredist/releases" target="_blank" rel="noopener" class="mycode_url">AIO Repack for latest Microsoft Visual C++ Redistributable Runtimes</a><br />
<br />
DirectX and OpenGL libs:<ul class="mycode_list"><li><a href="https://github.com/tschw/AntTweakBar" target="_blank" rel="noopener" class="mycode_url">AntTweakBar</a> library to add light and intuitive GUI to OpenGL and DX programs<br />
</li>
<li><a href="https://www.microsoft.com/ru-ru/download/details.aspx?id=35" target="_blank" rel="noopener" class="mycode_url">d3dx9_25.dll, d3dx9_40.dll, d3dx9_43.dll</a> - DirectX Runtime Environment for End Users<br />
<br />
</li>
</ul>
Other libs:<ul class="mycode_list"><li><a href="https://curl.se/libcurl/" target="_blank" rel="noopener" class="mycode_url">libcurl</a> - The multiprotocol file transfer library<br />
</li>
<li><a href="https://github.com/TsudaKageyu/minhook" target="_blank" rel="noopener" class="mycode_url">minhook</a> - The Minimalistic x86/x64 API Hooking Library for Windows<br />
</li>
<li><a href="https://zlib.net/" target="_blank" rel="noopener" class="mycode_url">zlib</a> - A Massively Spiffy Yet Delicately Unobtrusive Compression Library<br />
</li>
</ul>
]]></description>
			<content:encoded><![CDATA[<img src="https://github.com/ins1x/sa-essentials/raw/main/CLEO/(for%20developers)/gta-sa-lib-pack-essentials.png" loading="lazy"  alt="[Image: gta-sa-lib-pack-essentials.png]" class="mycode_img" /><br />
<br />
A pack of necessary libs for the correct operation of <a href="https://sampwiki.blast.hk/" target="_blank" rel="noopener" class="mycode_url">GTA San Andreas Multiplayer (SA-MP)</a> and mods.<br />
Repository forked form <a href="https://github.com/JuniorDjjr" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b">JuniorDjjr</span></a> <a href="https://www.mixmods.com.br/2019/06/sa-essentials-pack/" target="_blank" rel="noopener" class="mycode_url"><span style="font-style: italic;" class="mycode_i">sa-essentials-pack</span></a>. This set is wider than the original one, but does not contain fixes and third-party mods! Only the original versions of the libraries are collected here. The list of all libraries and their repositories is below.<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size">How use it</span></span><br />
<br />
You should already have <a href="https://www.sa-mp.mp/downloads/" target="_blank" rel="noopener" class="mycode_url">GTA:SA and SA:MP</a> installed. You can install all the necessary libraries at once, and not waste time installing them individually. Or you can just as quickly find the missing libraries and download them separately without worrying about authenticity.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">What the pack contains</span><br />
<br />
Loaders:<ul class="mycode_list"><li><a href="https://gtaforums.com/topic/669520-mod-loader/" target="_blank" rel="noopener" class="mycode_url">ModLoader</a> - is a plugin for Grand Theft Auto III, Vice City and San Andreas that adds an easy and user-friendly way to install and uninstall modifications into the game<br />
</li>
<li><a href="https://gtaforums.com/topic/890987-moonloader/" target="_blank" rel="noopener" class="mycode_url">Moonloader</a> - is a modification for GTA: San Andreas that brings new ability to use Lua scripts made by mods creators.<br />
</li>
<li><a href="http://www.gtagarage.com/mods/show.php?id=21709" target="_blank" rel="noopener" class="mycode_url">Silents ASI Loader</a> - This is a DLL file which adds ASI plugin loading functionality to San Andreas.<br />
</li>
</ul>
<br />
CLEO:<ul class="mycode_list"><li><a href="http://cleo.li/download.html" target="_blank" rel="noopener" class="mycode_url">CLEO 4</a> - is a hugely popular extensible library plugin which brings new possibilities in scripting for the game Grand Theft Auto: San Andreas by Rockstar Games, allowing the use of thousands of unique mods which change or expand the gameplay.<br />
</li>
<li><a href="https://www.mixmods.com.br/2023/10/cleoplus/" target="_blank" rel="noopener" class="mycode_url">CLEO +</a> - a CLEO 4 plugin by Junior_Djjr adding about 300 new opcodes<br />
</li>
<li><a href="https://www.blast.hk/threads/17/" target="_blank" rel="noopener" class="mycode_url">SAMPFUNCS 5.4</a> - is an add-on to the CLEO 4 library, globally expanding the capabilities of scriptwriters.<br />
</li>
</ul>
See the <a href="https://cleo.li/plugins" target="_blank" rel="noopener" class="mycode_url">https://cleo.li/plugins</a> for some of the available <a href="https://cleo.li/download.html#plugins" target="_blank" rel="noopener" class="mycode_url">CLEO plugins</a>.<br />
<br />
Moonloader modules:<ul class="mycode_list"><li><a href="https://github.com/Corenale/carbJsonConfigLua" target="_blank" rel="noopener" class="mycode_url">carbJsonConfigLua</a> - handling JSON configuration files, with special support for FFI cdata structures.<br />
</li>
<li><a href="https://github.com/openresty/lua-cjson/tree/master" target="_blank" rel="noopener" class="mycode_url">cjson</a> - Lua CJSON is a fast JSON encoding/parsing module for Lua<br />
</li>
<li><a href="https://github.com/lunarmodules/lua-compat-5.3" target="_blank" rel="noopener" class="mycode_url">compat</a> - Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1<br />
</li>
<li><a href="https://github.com/lunarmodules/copas/tree/master" target="_blank" rel="noopener" class="mycode_url">copas</a> - Dispatcher based on coroutines that can be used by TCP/IP servers<br />
</li>
<li><a href="https://github.com/effil/effil" target="_blank" rel="noopener" class="mycode_url">effil</a> - Multithreading support for Lua<br />
</li>
<li><a href="https://github.com/xARMORx/EntityRender" target="_blank" rel="noopener" class="mycode_url">EntityRender</a> - Library allows rendering entities in mimgui (peds, transport, objects).<br />
</li>
<li><a href="https://gitlab.com/THE-FYP/lua-fa-icons-4" target="_blank" rel="noopener" class="mycode_url">fa-icons</a> - Font Awesome 4 Icons + Font for Lua<br />
</li>
<li><a href="https://www.blast.hk/threads/111224/" target="_blank" rel="noopener" class="mycode_url">fAwesome</a> - Pack fAwesome fonts v4,v5,v6<br />
</li>
<li><a href="https://www.blast.hk/threads/55743/" target="_blank" rel="noopener" class="mycode_url">hooks</a> - Lua vmt+jmp/call hook<br />
</li>
<li><a href="https://github.com/msva/lua-htmlparser" target="_blank" rel="noopener" class="mycode_url">htmlparse</a> - An HTML parser for lua<br />
</li>
<li><a href="https://github.com/kikito/inspect.lua" target="_blank" rel="noopener" class="mycode_url">inspect</a> - Human-readable representation of Lua tables<br />
</li>
<li><a href="https://github.com/ocornut/imgui" target="_blank" rel="noopener" class="mycode_url">imgui</a> - ImGui Bloat-free Graphical User interface with minimal dependencies<br />
</li>
<li><a href="https://www.blast.hk/threads/27544/" target="_blank" rel="noopener" class="mycode_url">Imgui Addons</a> - collects several elements for imgui into one common library<br />
</li>
<li><a href="https://luarocks.org/modules/benoitgermain/lanes" target="_blank" rel="noopener" class="mycode_url">lanes</a> - Lanes is a lightweight, native, lazy evaluating multithreading library for Lua<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/lbase64" target="_blank" rel="noopener" class="mycode_url">lbase64</a> - A Base64 library for Lua<br />
</li>
<li><a href="https://github.com/zhuomingliang/luatcc" target="_blank" rel="noopener" class="mycode_url">luatcc</a> - Luatcc is a Lua binding for libtcc<br />
</li>
<li><a href="https://luarocks.org/modules/gvvaughan/lpeg" target="_blank" rel="noopener" class="mycode_url">LPeg</a> - A pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs)<br />
</li>
<li><a href="https://luarocks.org/modules/rrt/lrexlib-pcre" target="_blank" rel="noopener" class="mycode_url">Lrexlib-PCRE</a> - Is a regular expression library, which provides bindings for POSIX and PCRE regular expression libs<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/luafilesystem" target="_blank" rel="noopener" class="mycode_url">LuaFileSystem</a> - File System Library for the Lua Programming Language<br />
</li>
<li><a href="https://github.com/THE-FYP/lua-requests" target="_blank" rel="noopener" class="mycode_url">lua-requests</a> - The same friendly Python Requests interface for Lua<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/luasec" target="_blank" rel="noopener" class="mycode_url">LuaSec</a> - A binding for OpenSSL library to provide TLS/SSL communication over LuaSocket<br />
</li>
<li><a href="https://lunarmodules.github.io/luasql" target="_blank" rel="noopener" class="mycode_url">luasql-sqlite</a> - Is a simple interface from Lua to a DBMS Sqlite<br />
</li>
<li><a href="https://github.com/lunarmodules/luasocket" target="_blank" rel="noopener" class="mycode_url">lua-socket</a> - Network support for the Lua language<br />
</li>
<li><a href="https://luajit.org/" target="_blank" rel="noopener" class="mycode_url">LuaJIT</a> - Just-In-Time Compiler for Lua<br />
</li>
<li><a href="https://github.com/rxi/lume" target="_blank" rel="noopener" class="mycode_url">lume</a> - A collection of functions for Lua, geared towards game development<br />
</li>
<li><a href="https://luarocks.org/modules/luarocks/lustache" target="_blank" rel="noopener" class="mycode_url">lustache</a> - Logic-less mustache templates with Lua<br />
</li>
<li><a href="https://github.com/THE-FYP/mimgui" target="_blank" rel="noopener" class="mycode_url">mimgui</a> - Dear ImGui for MoonLoader<br />
</li>
<li><a href="https://www.blast.hk/threads/127255/" target="_blank" rel="noopener" class="mycode_url">Mimgui Addons</a> - collects several elements for mimgui into one common library<br />
</li>
<li><a href="https://github.com/THE-FYP/MoonAdditions" target="_blank" rel="noopener" class="mycode_url">MoonAdditions</a> - A bunch of useful things for MoonLoader<br />
</li>
<li><a href="https://luarocks.org/modules/fyp/moonloader-bind" target="_blank" rel="noopener" class="mycode_url">moonloader-bind</a> - Events for common tasks<br />
</li>
<li><a href="https://github.com/Northn/MoonMonet" target="_blank" rel="noopener" class="mycode_url">MoonMonet</a> - A library that generates Monet-style color accents<br />
</li>
<li><a href="https://github.com/moteus/lua-path" target="_blank" rel="noopener" class="mycode_url">path</a> - File system path manipulation library<br />
</li>
<li><a href="https://luarocks.org/modules/steved/penlight" target="_blank" rel="noopener" class="mycode_url">penlight</a> - A set of pure Lua libraries focusing on input data handling<br />
</li>
<li><a href="https://www.blast.hk/threads/69433/" target="_blank" rel="noopener" class="mycode_url">RakLua</a> - A new library for interacting with RakNet and BitStream<br />
</li>
<li><a href="https://github.com/AnWuPP/rkeys" target="_blank" rel="noopener" class="mycode_url">RKeys</a> - Register HotKey for MoonLoader<br />
</li>
<li><a href="https://github.com/imring/SAMP-API.lua" target="_blank" rel="noopener" class="mycode_url">SAMP-API</a> - adds structures and functions from SA:MP<br />
</li>
<li><a href="https://github.com/THE-FYP/SAMP.Lua" target="_blank" rel="noopener" class="mycode_url">SAMP.Lua</a> - A SA-MP API library for MoonLoader<br />
</li>
<li><a href="https://github.com/SF-lua/SF.lua" target="_blank" rel="noopener" class="mycode_url">SFlua</a> - SA:MP functions for MoonLoader<br />
</li>
<li><a href="https://github.com/SLMP-Team/SNET" target="_blank" rel="noopener" class="mycode_url">SNET</a> - Cross-platform, open source, network library<br />
</li>
<li><a href="https://github.com/c0sui/lua_strings" target="_blank" rel="noopener" class="mycode_url">strings</a> - Custom string methods for the lua<br />
</li>
<li><a href="https://github.com/neverlane/moon-tabler-icons" target="_blank" rel="noopener" class="mycode_url">tabler-icons</a> - tabler.io icons for lua<br />
</li>
<li><a href="https://github.com/lubyk/xml" target="_blank" rel="noopener" class="mycode_url">xml</a> - Very fast and simple XML parser for Lua based on RapidXML 1.13<br />
</li>
</ul>
See the <a href="https://luarocks.org/modules/fyp" target="_blank" rel="noopener" class="mycode_url">https://luarocks.org/modules/fyp</a> for some of the available <a href="https://github.com/orgs/lunarmodules/repositories?type=all" target="_blank" rel="noopener" class="mycode_url">Lua modules</a>.<br />
<br />
Audio libs:<ul class="mycode_list"><li><a href="https://gamedev.ru/code/terms/EAX" target="_blank" rel="noopener" class="mycode_url">eax.dll</a> - Environmental Audio Extensions<br />
</li>
<li><a href="https://www.un4seen.com/" target="_blank" rel="noopener" class="mycode_url">bassmix.dll</a> - BASS audio library<br />
</li>
<li><a href="https://www.un4seen.com/doc/#bass/bass_fx.html" target="_blank" rel="noopener" class="mycode_url">bass_fx.dll</a> - is an extension to the BASS audio library, provides several effects, including tempo &amp; pitch control<br />
</li>
<li><a href="https://www.un4seen.com/doc/#basswasapi/basswasapi.html" target="_blank" rel="noopener" class="mycode_url">basswasapi.dll</a> - is an extension to the BASS audio library, providing the ability to use WASAPI output and input<br />
</li>
<li><a href="https://www.rarewares.org/ogg-libraries.php" target="_blank" rel="noopener" class="mycode_url">ogg.dll</a> - Ogg Vorbis Dynamic Link Library<br />
</li>
<li><a href="https://xiph.org/vorbis/" target="_blank" rel="noopener" class="mycode_url">vorbis.dll</a> - Vorbis Dynamic Link Library<br />
<br />
</li>
</ul>
MSVC Redist:<ul class="mycode_list"><li><a href="https://www.mixmods.com.br/2015/08/download-de-todas-as-dll-que-voce-precisa/" target="_blank" rel="noopener" class="mycode_url">msvcr100d.dll</a> - Microsoft Visual C++ Redistributable (MSVC) Debug<br />
</li>
</ul>
See the <a href="https://github.com/abbodi1406/vcredist/releases" target="_blank" rel="noopener" class="mycode_url">AIO Repack for latest Microsoft Visual C++ Redistributable Runtimes</a><br />
<br />
DirectX and OpenGL libs:<ul class="mycode_list"><li><a href="https://github.com/tschw/AntTweakBar" target="_blank" rel="noopener" class="mycode_url">AntTweakBar</a> library to add light and intuitive GUI to OpenGL and DX programs<br />
</li>
<li><a href="https://www.microsoft.com/ru-ru/download/details.aspx?id=35" target="_blank" rel="noopener" class="mycode_url">d3dx9_25.dll, d3dx9_40.dll, d3dx9_43.dll</a> - DirectX Runtime Environment for End Users<br />
<br />
</li>
</ul>
Other libs:<ul class="mycode_list"><li><a href="https://curl.se/libcurl/" target="_blank" rel="noopener" class="mycode_url">libcurl</a> - The multiprotocol file transfer library<br />
</li>
<li><a href="https://github.com/TsudaKageyu/minhook" target="_blank" rel="noopener" class="mycode_url">minhook</a> - The Minimalistic x86/x64 API Hooking Library for Windows<br />
</li>
<li><a href="https://zlib.net/" target="_blank" rel="noopener" class="mycode_url">zlib</a> - A Massively Spiffy Yet Delicately Unobtrusive Compression Library<br />
</li>
</ul>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Animated Textdraws]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3788</link>
			<pubDate>Mon, 26 Jan 2026 20:26:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=6645">Crazy_ArKzX</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3788</guid>
			<description><![CDATA[Very useful, it uses Robert Penner's smoothing functions for SAMP.<br />
<br />
Note: It's not PNG/sprite/CEF/progress ba<br />
<br />
It's pure textdraw...<br />
<br />
<a href="https://github.com/alexchwoj/pawn-easing-functions" target="_blank" rel="noopener" class="mycode_url">https://github.com/alexchwoj/pawn-easing-functions</a>]]></description>
			<content:encoded><![CDATA[Very useful, it uses Robert Penner's smoothing functions for SAMP.<br />
<br />
Note: It's not PNG/sprite/CEF/progress ba<br />
<br />
It's pure textdraw...<br />
<br />
<a href="https://github.com/alexchwoj/pawn-easing-functions" target="_blank" rel="noopener" class="mycode_url">https://github.com/alexchwoj/pawn-easing-functions</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[LiveDialogs.inc]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3727</link>
			<pubDate>Fri, 19 Dec 2025 05:53:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4689">vawylon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3727</guid>
			<description><![CDATA[<span style="color: #bbbbbb;" class="mycode_color"><span style="font-family: Consolas, 'Courier New', monospace;" class="mycode_font"><span style="color: #e06c75;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size">LiveDialogs</span></span><br />
<br />
<a href="https://github.com/vawylon/LiveDialogs" target="_blank" rel="noopener" class="mycode_url">https://github.com/vawylon/LiveDialogs</a><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">LiveDialogs — Allows you to write multi-level dialogs in a single function without duplicating logic between “opening” and “handling the response”.</span><br />
<br />
<span style="color: #e06c75;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size">Example:</span></span></span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">```c</span><br />
<span style="color: #bbbbbb;" class="mycode_color">CMD:</span><span style="color: #98c379;" class="mycode_color">menu</span><span style="color: #bbbbbb;" class="mycode_color">(playerid) {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    </span><span style="color: #98c379;" class="mycode_color">Dialog_Create</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> Dialog:Menu);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">}</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">dialog </span><span style="color: #98c379;" class="mycode_color">Menu</span><span style="color: #bbbbbb;" class="mycode_color">(playerid)</span><br />
<span style="color: #bbbbbb;" class="mycode_color">{</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    Create:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Money"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        </span><span style="color: #676f7d;" class="mycode_color">// when pressing "Back" we will close the dialog</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        ResponseRight: </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_CLOSE;</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">        </span><span style="color: #676f7d;" class="mycode_color">// using a loop we create 10 items</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        </span><span style="color: #e06c75;" class="mycode_color">for</span><span style="color: #bbbbbb;" class="mycode_color"> (new i </span><span style="color: #e06c75;" class="mycode_color">=</span> <span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount; i </span><span style="color: #e06c75;" class="mycode_color">&lt;=</span> <span style="color: #c678dd;" class="mycode_color">10</span><span style="color: #bbbbbb;" class="mycode_color">; i</span><span style="color: #e06c75;" class="mycode_color">++</span><span style="color: #bbbbbb;" class="mycode_color">) {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            new amount </span><span style="color: #e06c75;" class="mycode_color">=</span><span style="color: #bbbbbb;" class="mycode_color"> i </span><span style="color: #e06c75;" class="mycode_color">*</span> <span style="color: #c678dd;" class="mycode_color">20000</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Get </span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color">&#36;"</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #98c379;" class="mycode_color">GivePlayerMoney</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"You received {44FF44}</span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color">&#36;"</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_REOPEN;</span><span style="color: #676f7d;" class="mycode_color"> // Reopen the dialog</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        }</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">        ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            </span><span style="color: #676f7d;" class="mycode_color">// Dialog when selecting the "Experience" item</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            Create:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Get experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #676f7d;" class="mycode_color">// Go back in case "Back" is pressed</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                ResponseRight: </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"1 EXP"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #98c379;" class="mycode_color">SetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #98c379;" class="mycode_color">GetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid) </span><span style="color: #e06c75;" class="mycode_color">+</span> <span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #bbbbbb;" class="mycode_color">);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"You received {FFCC44}</span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color"> EXP"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #bbbbbb;" class="mycode_color">);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                }</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Enter value"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #676f7d;" class="mycode_color">// Create a dialog when selecting value input</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    Create:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Get experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        </span><span style="color: #676f7d;" class="mycode_color">// Go back in case "Back" is pressed</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        ResponseRight: </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                        InputText:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Enter amount of experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            new exp </span><span style="color: #e06c75;" class="mycode_color">=</span> <span style="color: #98c379;" class="mycode_color">Dialog_Number</span><span style="color: #bbbbbb;" class="mycode_color">(playerid);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #e06c75;" class="mycode_color">if</span><span style="color: #bbbbbb;" class="mycode_color"> (exp </span><span style="color: #e06c75;" class="mycode_color">&lt;=</span> <span style="color: #c678dd;" class="mycode_color">0</span><span style="color: #bbbbbb;" class="mycode_color">)</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                                </span><span style="color: #676f7d;" class="mycode_color">// Reopen the dialog if the number is not valid</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                                </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Invalid value entered!"</span><span style="color: #bbbbbb;" class="mycode_color">);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                                </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_REOPEN;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            }</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #98c379;" class="mycode_color">SetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #98c379;" class="mycode_color">GetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid) </span><span style="color: #e06c75;" class="mycode_color">+</span><span style="color: #bbbbbb;" class="mycode_color"> exp);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"You received {FFCC44}</span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color"> EXP"</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> exp);</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    Button:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Give"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Back"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            Button:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Select"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Back"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    Button:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Select"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Close"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">}</span><br />
<span style="color: #bbbbbb;" class="mycode_color">```</span></span></span>]]></description>
			<content:encoded><![CDATA[<span style="color: #bbbbbb;" class="mycode_color"><span style="font-family: Consolas, 'Courier New', monospace;" class="mycode_font"><span style="color: #e06c75;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size">LiveDialogs</span></span><br />
<br />
<a href="https://github.com/vawylon/LiveDialogs" target="_blank" rel="noopener" class="mycode_url">https://github.com/vawylon/LiveDialogs</a><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">LiveDialogs — Allows you to write multi-level dialogs in a single function without duplicating logic between “opening” and “handling the response”.</span><br />
<br />
<span style="color: #e06c75;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size">Example:</span></span></span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">```c</span><br />
<span style="color: #bbbbbb;" class="mycode_color">CMD:</span><span style="color: #98c379;" class="mycode_color">menu</span><span style="color: #bbbbbb;" class="mycode_color">(playerid) {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    </span><span style="color: #98c379;" class="mycode_color">Dialog_Create</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> Dialog:Menu);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">}</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">dialog </span><span style="color: #98c379;" class="mycode_color">Menu</span><span style="color: #bbbbbb;" class="mycode_color">(playerid)</span><br />
<span style="color: #bbbbbb;" class="mycode_color">{</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    Create:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Money"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        </span><span style="color: #676f7d;" class="mycode_color">// when pressing "Back" we will close the dialog</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        ResponseRight: </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_CLOSE;</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">        </span><span style="color: #676f7d;" class="mycode_color">// using a loop we create 10 items</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        </span><span style="color: #e06c75;" class="mycode_color">for</span><span style="color: #bbbbbb;" class="mycode_color"> (new i </span><span style="color: #e06c75;" class="mycode_color">=</span> <span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount; i </span><span style="color: #e06c75;" class="mycode_color">&lt;=</span> <span style="color: #c678dd;" class="mycode_color">10</span><span style="color: #bbbbbb;" class="mycode_color">; i</span><span style="color: #e06c75;" class="mycode_color">++</span><span style="color: #bbbbbb;" class="mycode_color">) {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            new amount </span><span style="color: #e06c75;" class="mycode_color">=</span><span style="color: #bbbbbb;" class="mycode_color"> i </span><span style="color: #e06c75;" class="mycode_color">*</span> <span style="color: #c678dd;" class="mycode_color">20000</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Get </span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color">&#36;"</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #98c379;" class="mycode_color">GivePlayerMoney</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"You received {44FF44}</span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color">&#36;"</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> amount);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_REOPEN;</span><span style="color: #676f7d;" class="mycode_color"> // Reopen the dialog</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        }</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">        ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            </span><span style="color: #676f7d;" class="mycode_color">// Dialog when selecting the "Experience" item</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            Create:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Get experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                </span><span style="color: #676f7d;" class="mycode_color">// Go back in case "Back" is pressed</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                ResponseRight: </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"1 EXP"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #98c379;" class="mycode_color">SetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #98c379;" class="mycode_color">GetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid) </span><span style="color: #e06c75;" class="mycode_color">+</span> <span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #bbbbbb;" class="mycode_color">);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"You received {FFCC44}</span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color"> EXP"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #bbbbbb;" class="mycode_color">);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                }</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                ListItem:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Enter value"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    </span><span style="color: #676f7d;" class="mycode_color">// Create a dialog when selecting value input</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    Create:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Get experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        </span><span style="color: #676f7d;" class="mycode_color">// Go back in case "Back" is pressed</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        ResponseRight: </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                        InputText:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Enter amount of experience"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            new exp </span><span style="color: #e06c75;" class="mycode_color">=</span> <span style="color: #98c379;" class="mycode_color">Dialog_Number</span><span style="color: #bbbbbb;" class="mycode_color">(playerid);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #e06c75;" class="mycode_color">if</span><span style="color: #bbbbbb;" class="mycode_color"> (exp </span><span style="color: #e06c75;" class="mycode_color">&lt;=</span> <span style="color: #c678dd;" class="mycode_color">0</span><span style="color: #bbbbbb;" class="mycode_color">)</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            {</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                                </span><span style="color: #676f7d;" class="mycode_color">// Reopen the dialog if the number is not valid</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                                </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Invalid value entered!"</span><span style="color: #bbbbbb;" class="mycode_color">);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                                </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_REOPEN;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            }</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #98c379;" class="mycode_color">SetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #98c379;" class="mycode_color">GetPlayerLevel</span><span style="color: #bbbbbb;" class="mycode_color">(playerid) </span><span style="color: #e06c75;" class="mycode_color">+</span><span style="color: #bbbbbb;" class="mycode_color"> exp);</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #98c379;" class="mycode_color">SendClientMessage</span><span style="color: #bbbbbb;" class="mycode_color">(playerid</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e06c75;" class="mycode_color">-</span><span style="color: #c678dd;" class="mycode_color">1</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"You received {FFCC44}</span><span style="color: #56b6c2;" class="mycode_color">%d</span><span style="color: #e5c07b;" class="mycode_color"> EXP"</span><span style="color: #abb2bf;" class="mycode_color">,</span><span style="color: #bbbbbb;" class="mycode_color"> exp);</span><br />
<br />
<span style="color: #bbbbbb;" class="mycode_color">                            </span><span style="color: #e06c75;" class="mycode_color">return</span><span style="color: #bbbbbb;" class="mycode_color"> DIALOG_BACK;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                        }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                    Button:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Give"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Back"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">                }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">            Button:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Select"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Back"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">        }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    }</span><br />
<span style="color: #bbbbbb;" class="mycode_color">    Button:</span><span style="color: #e06c75;" class="mycode_color">&lt;</span><span style="color: #e5c07b;" class="mycode_color">"Select"</span><span style="color: #abb2bf;" class="mycode_color">,</span> <span style="color: #e5c07b;" class="mycode_color">"Close"</span><span style="color: #e06c75;" class="mycode_color">&gt;</span><span style="color: #bbbbbb;" class="mycode_color">;</span><br />
<span style="color: #bbbbbb;" class="mycode_color">}</span><br />
<span style="color: #bbbbbb;" class="mycode_color">```</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[OpenGate (Open Proximity Gates)]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3669</link>
			<pubDate>Thu, 13 Nov 2025 18:46:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=6645">Crazy_ArKzX</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3669</guid>
			<description><![CDATA[With This Include You Can Open Gates Only By Approaching Them <br />
<br />
Demonstration:<br />
<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/NexNcZS4BEU" frameborder="0" allowfullscreen="true"></iframe><br />
<br />
Download: <a href="https://github.com/crazy-arkzx/opengate" target="_blank" rel="noopener" class="mycode_url">https://github.com/crazy-arkzx/opengate</a>]]></description>
			<content:encoded><![CDATA[With This Include You Can Open Gates Only By Approaching Them <br />
<br />
Demonstration:<br />
<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/NexNcZS4BEU" frameborder="0" allowfullscreen="true"></iframe><br />
<br />
Download: <a href="https://github.com/crazy-arkzx/opengate" target="_blank" rel="noopener" class="mycode_url">https://github.com/crazy-arkzx/opengate</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[EVO Anti-Cheat]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3209</link>
			<pubDate>Sat, 05 Jul 2025 13:43:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7251">Eduardo_AC</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3209</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.ibb.co/Kc0XnPRR/Sem-titulo-2.png" loading="lazy"  width="200" height="150" alt="[Image: Sem-titulo-2.png]" class="mycode_img" /><br />
<span style="font-size: xx-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color">EVO Anti-Cheat 1.3</span></span></span><br />
</div>
<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">About:</span></span></span><br />
<span style="color: #00369b;" class="mycode_color"><br />
<span style="color: #000000;" class="mycode_color">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).</span></span><br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">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 </span><span style="color: #000000;" class="mycode_color">from the project management.</span></span><br />
<br />
<br />
<br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Detection configuration:</span></span></span></span></span><br />
<br />
<br />
As this is a closed-source anti-cheat, it has an external configuration file that can be reloaded at any time.<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">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.</span></span><br />
<br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">Below are some of the configuration entries for better understanding:<br />
</span></span><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cbug_speed_limit=<br />
cbug_alert_count=<br />
auto_cbug_speed_limit=<br />
auto_cbug_alert_count=<br />
armour_delay_check=<br />
armour_alert_count=<br />
health_delay_check=<br />
health_alert_count=<br />
driveby_delay_check=<br />
fakekill_kill_flood_sequence_time=<br />
fakekill_death_flood_sequence_time=<br />
fakekill_kill_flood_alert_coun t=<br />
fakekill_death_flood_alert_count=<br />
fastrun_distance=<br />
fastrun_distance_alert_count=<br />
incoming_connection_alert_count=<br />
incoming_connection_sequence_delay=<br />
interior_delay_check=<br />
interior_alert_count=<br />
virtual_world_delay_check=<br />
virtual_world_alert_count=<br />
special_action_delay_check=<br />
money_delay_check=</code></div></div><br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Security:</span></span></span></span></span><br />
<br />
Any information in SA:MP can be easily manipulated, which can mess up the entire economy and the gameplay of others.<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">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.</span></span><br />
<br />
<br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Configuration control:</span></span></span><br />
<ul class="mycode_list"><li>Set when the anti-cheat should start for a specific player<br />
</li>
<li>Set when the anti-cheat should stop for a specific player<br />
</li>
<li>Set when the anti-cheat should pause or resume checking a specific cheat for a specific player<br />
</li>
<li>Change and reload the anti-cheat settings at any time without having to restart the server or reload the filterscript<br />
</li>
</ul>
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">OS Compatibility:</span></span></span><br />
<br />
All anti-cheat dependencies can be obtained for both Linux and Windows.<br />
The anti-cheat is a filterscript, so it can be easily implemented like any other external script.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Game Mode Compatibility:</span></span></span><br />
<br />
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.<br />
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.<br />
You can completely configure each detection as you prefer.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Detection approach:</span></span></span><br />
<br />
The server is <span style="text-decoration: underline;" class="mycode_u">completely independent</span> in deciding what to do about the detection.<br />
For this, a library (evo_ac.inc) is provided containing all the information needed to apply the punishments and configurations.<br />
Unlike most anti-cheats, this one generates an individual call in the respective callback informing more details about the detection.<br />
<br />
Some callbacks:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>AC_OnInvalidCameraCrasher(playerid, cam_mode)<br />
AC_OnPlayerAmmo(playerid, old_ammo, new_ammo, weaponid)<br />
AC_OnPlayerArmour(playerid, Float:old_armour, Float:new_armour)<br />
AC_OnPlayerCBug(playerid, speed)<br />
AC_OnPlayerAutoCBug(playerid, speed)<br />
AC_OnPlayerCheckpoint(playerid)<br />
AC_OnPlayerDamageFlood(playerid, damagedid, weaponid, damage_count)</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Damage control:</span></span></span><br />
<br />
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.<br />
<br />
It is also possible to configure the damage in different situations:<br />
<ul class="mycode_list"><li>Body parts<br />
- For custom damage in 7 areas of the body<br />
</li>
<li>Range<br />
- Automatically blocks shots fired outside the defined range<br />
</li>
<li>Damage blocking in body parts<br />
- For custom damage blocking in 7 areas of the body<br />
</li>
<li>Permission/block to give/receive damage<br />
- To allow and/or block damage given or received to players<br />
</li>
</ul>
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Detections (so far):</span></span></span><br />
<ul class="mycode_list"><li>Armor<br />
</li>
<li>C-Bug<br />
</li>
<li>Auto C-Bug<br />
</li>
<li>Car Fly<br />
</li>
<li>Dialog Spoof<br />
</li>
<li>Drive-By<br />
</li>
<li>Fake Kill/Death (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">flood</span></span>)<br />
</li>
<li>Fast Run<br />
</li>
<li>GodMode<br />
</li>
<li>Health<br />
</li>
<li>Connection Flood<br />
</li>
<li>Interior<br />
</li>
<li>Special Action (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">All</span></span>)<br />
</li>
<li>Money<br />
</li>
<li>Multi Connection<br />
</li>
<li>No Fall Damage<br />
</li>
<li>Ping<br />
</li>
<li>Player Checkpoint<br />
</li>
<li>Player Position (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Fly, Airbreak, Teleport</span></span>)<br />
</li>
<li>Race Checkpoint<br />
</li>
<li>Skin<br />
</li>
<li>Vehicle Fast Enter/Exit<br />
</li>
<li>Vehicle Health<br />
</li>
<li>Vehicle Mod (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Invalid, Cheat</span></span>)<br />
</li>
<li>Vehicle Speed<br />
</li>
<li>Virtual World<br />
</li>
<li>Weapon (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Forbbiden, Invalid, Cheat</span></span>)<br />
</li>
<li>Ammo (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Infinite, Invalid, Cheat</span></span>)<br />
</li>
<li>Rapid Fire<br />
</li>
<li>Free Cam<br />
</li>
<li>Player Velocity (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">troll</span></span>)<br />
</li>
<li>Vehicle Velocity (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">troll</span></span>)<br />
</li>
<li>Fake AFK<br />
</li>
<li>Fake Lag<br />
</li>
<li>Invisible<br />
</li>
<li>Damage (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Invalid, Flood</span></span>)<br />
</li>
<li>Silent Aim<br />
</li>
<li>Pro Aim<br />
</li>
<li>Quick Vehicle Change (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">shot, pull, teleport</span></span>)<br />
</li>
<li>Anti Kick<br />
</li>
<li>Invalid Bullet Crasher<br />
</li>
<li>Invalid Damage Crasher<br />
</li>
<li>Invalid Camera Crasher<br />
</li>
<li>NOP (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">TogglePlayerSpectating, TogglePlayerControllable, RemovePlayerFromVehicle, SpawnPlayer, SetPlayerPos</span></span>)<br />
</li>
<li>Attached Objects (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Full protection</span></span>)<br />
</li>
<li>RCon <span style="color: #ff4136;" class="mycode_color">[new]</span><br />
</li>
<li>Force Spawn<span style="color: #ff4136;" class="mycode_color"> [new]</span><br />
</li>
<li>Fast Respawn<span style="color: #ff4136;" class="mycode_color"> [new]</span><br />
</li>
<li>Flood Cheats <span style="color: #ff4136;" class="mycode_color">[new]</span><br />
</li>
</ul>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Resources required:</span></span></span><br />
<ol type="1" class="mycode_list"><li><span style="color: #9a00b2;" class="mycode_color">[Plugin]</span> <span style="font-style: italic;" class="mycode_i">GVar</span><br />
</li>
</ol>
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Functions added so far:</span></span></span><br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color">Anti-cheat configuration:</span></span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>stock EAC_InitPlayerAC(playerid) // Starts the anti-cheat for the player<br />
stock EAC_StopPlayerAC(playerid) // Stops the anti-cheat for the player<br />
stock EAC_IsActivePlayerAC(playerid) // Checks if the anti-cheat is active (started) for the player<br />
stock EAC_PausePlayerAC(playerid, bool:pause, cheatid = -1) // Pauses a given protection for the player<br />
stock EAC_IsPausedPlayerAC(playerid, cheatid) // Returns if a given protection is paused for the player<br />
stock EAC_GetCheatNameAC(cheatid) // Returns the name of the cheat with base no index<br />
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<br />
stock EAC_Auth(const token[]) // Authenticate the anti-cheat token to enable it</code></div></div><br />
Damage control:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>stock EWD_SetPlayerWeaponRange(playerid, weaponid, Float:range) // Change the range of a given weapon for the player<br />
stock Float:EWD_GetPlayerWeaponRange(playerid, weaponid) // Returns the range of a given weapon for the player<br />
stock EWD_SetPlayerWeaponDamage(playerid, weaponid, Float:amount) // Change the damage of a given weapon for the player<br />
stock Float:EWD_GetPlayerWeaponDamage(playerid, weaponid) // Returns the damage of a given weapon of the player<br />
stock EWD_SetPlayerBodyHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage of a given weapon and body part for the player<br />
stock Float:EWD_GetPlayerBodyHitDamage(playerid, weaponid, bodypart) // Returns the damage of a given weapon and body part for the player<br />
stock EWD_BlockPlayerBodyHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage block of a given weapon and body part for the player<br />
stock Float:EWD_GetPlayerBlockedBodyHitDamage(playerid, weaponid, bodypart) // Returns the damage block of a given weapon and body part for the player<br />
stock EWD_BlockPlayerArmourHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage block of a given weapon, exclusively if wearing a vest, for the player<br />
stock Float:EWD_GetPlayerBlockedArmourHitDamage(playerid, weaponid, bodypart) // Returns the damage block of a given weapon, exclusively if using a vest, of the player<br />
stock EWD_TogglePlayerGiveBulletDamage(playerid, bool:toggle) // Enables/Disables the damage sent from the player<br />
stock EWD_IsPlayerGivingBulletDamage(playerid) // Returns whether the damage sent from the player is enabled or not<br />
stock EWD_TogglePlayerTakeBulletDamage(playerid, bool:toggle) // Enables/Disables the damage received from the player<br />
stock EWD_IsPlayerTakingBulletDamage(playerid) // Returns whether the damage received from the player is enabled or not<br />
stock EWD_EnablePlayerFriendlyFire(playerid, bool:enable) // Enables/Disables the damage sent to players on the same team</code></div></div><br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color">Additional functions:</span></span><br />
</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>stock EAC_SetPlayerGodMode(playerid, bool:active) // Enables/Disables player's God mode<br />
stock EAC_IsPlayerInGodMode(playerid) // Returns whether the player is in God mode or not<br />
stock EAC_SetPlayerMoney(playerid, money) // Sets the player's money<br />
stock EAC_UpdatePlayerMoney(playerid) // Only updates the player's money on the screen based on the anti-cheat memory<br />
stock EAC_GetPlayerFreeAttachedObjectSlot(playerid) // Returns the first free slot for attacked objects on the player's body<br />
stock EAC_GetPlayerAttachedObjectModelIndex(playerid, modelid) // Returns the index of the attacked object on the player's body based on the object's model<br />
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)<br />
stock EAC_ApplyPlayerAttachedObjects(playerid) // Applies the attacked objects to the player's body based on the anti-cheat's memory<br />
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<br />
stock EAC_GetPlayerWeaponData(playerid, slot, &amp;weapons, &amp;ammo) // Returns the player's weapons, based on the anti-cheat's memory (and not on the client's date)<br />
stock EAC_SetPlayerWeapon(playerid, weaponid, ammo) // Sets a specific weapon for the player<br />
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)</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: small;" class="mycode_size"><span style="font-size: large;" class="mycode_size"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Project maintenance:</span></span></span></span></span><br />
<br />
Despite being recent, it is a solid, stable and extremely optimized project. Always focused on improvements and new implementations<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Server where it is being tested:</span></span></span><br />
<br />
If you are interested in checking the anti-cheat and its effectiveness, just access the server below:<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i">Os Aposented PvP</span></span><span style="font-style: italic;" class="mycode_i">: </span><a href="samp://104.234.224.87:7777" target="_blank" rel="noopener" class="mycode_url">104.234.224.87:7777</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">More information:</span></span></span><br />
<br />
Discord: <a href="https://discord.gg/cuFaYC9UMQ" target="_blank" rel="noopener" class="mycode_url">https://discord.gg/cuFaYC9UMQ</a><br />
<br />
Now you can:<ul class="mycode_list"><li>Interact with a custom Bot for key and payment automation<br />
</li>
<li>Report bugs<br />
</li>
<li>Send feedback<br />
</li>
<li>Private call with me to discuss anti-cheat<br />
</li>
<li>Download<br />
</li>
</ul>
<br />
Translated from portalsamp.]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.ibb.co/Kc0XnPRR/Sem-titulo-2.png" loading="lazy"  width="200" height="150" alt="[Image: Sem-titulo-2.png]" class="mycode_img" /><br />
<span style="font-size: xx-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color">EVO Anti-Cheat 1.3</span></span></span><br />
</div>
<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">About:</span></span></span><br />
<span style="color: #00369b;" class="mycode_color"><br />
<span style="color: #000000;" class="mycode_color">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).</span></span><br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">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 </span><span style="color: #000000;" class="mycode_color">from the project management.</span></span><br />
<br />
<br />
<br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Detection configuration:</span></span></span></span></span><br />
<br />
<br />
As this is a closed-source anti-cheat, it has an external configuration file that can be reloaded at any time.<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">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.</span></span><br />
<br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">Below are some of the configuration entries for better understanding:<br />
</span></span><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cbug_speed_limit=<br />
cbug_alert_count=<br />
auto_cbug_speed_limit=<br />
auto_cbug_alert_count=<br />
armour_delay_check=<br />
armour_alert_count=<br />
health_delay_check=<br />
health_alert_count=<br />
driveby_delay_check=<br />
fakekill_kill_flood_sequence_time=<br />
fakekill_death_flood_sequence_time=<br />
fakekill_kill_flood_alert_coun t=<br />
fakekill_death_flood_alert_count=<br />
fastrun_distance=<br />
fastrun_distance_alert_count=<br />
incoming_connection_alert_count=<br />
incoming_connection_sequence_delay=<br />
interior_delay_check=<br />
interior_alert_count=<br />
virtual_world_delay_check=<br />
virtual_world_alert_count=<br />
special_action_delay_check=<br />
money_delay_check=</code></div></div><br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Security:</span></span></span></span></span><br />
<br />
Any information in SA:MP can be easily manipulated, which can mess up the entire economy and the gameplay of others.<br />
<br />
<span style="color: #00369b;" class="mycode_color"><span style="color: #000000;" class="mycode_color">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.</span></span><br />
<br />
<br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Configuration control:</span></span></span><br />
<ul class="mycode_list"><li>Set when the anti-cheat should start for a specific player<br />
</li>
<li>Set when the anti-cheat should stop for a specific player<br />
</li>
<li>Set when the anti-cheat should pause or resume checking a specific cheat for a specific player<br />
</li>
<li>Change and reload the anti-cheat settings at any time without having to restart the server or reload the filterscript<br />
</li>
</ul>
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">OS Compatibility:</span></span></span><br />
<br />
All anti-cheat dependencies can be obtained for both Linux and Windows.<br />
The anti-cheat is a filterscript, so it can be easily implemented like any other external script.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Game Mode Compatibility:</span></span></span><br />
<br />
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.<br />
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.<br />
You can completely configure each detection as you prefer.<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Detection approach:</span></span></span><br />
<br />
The server is <span style="text-decoration: underline;" class="mycode_u">completely independent</span> in deciding what to do about the detection.<br />
For this, a library (evo_ac.inc) is provided containing all the information needed to apply the punishments and configurations.<br />
Unlike most anti-cheats, this one generates an individual call in the respective callback informing more details about the detection.<br />
<br />
Some callbacks:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>AC_OnInvalidCameraCrasher(playerid, cam_mode)<br />
AC_OnPlayerAmmo(playerid, old_ammo, new_ammo, weaponid)<br />
AC_OnPlayerArmour(playerid, Float:old_armour, Float:new_armour)<br />
AC_OnPlayerCBug(playerid, speed)<br />
AC_OnPlayerAutoCBug(playerid, speed)<br />
AC_OnPlayerCheckpoint(playerid)<br />
AC_OnPlayerDamageFlood(playerid, damagedid, weaponid, damage_count)</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Damage control:</span></span></span><br />
<br />
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.<br />
<br />
It is also possible to configure the damage in different situations:<br />
<ul class="mycode_list"><li>Body parts<br />
- For custom damage in 7 areas of the body<br />
</li>
<li>Range<br />
- Automatically blocks shots fired outside the defined range<br />
</li>
<li>Damage blocking in body parts<br />
- For custom damage blocking in 7 areas of the body<br />
</li>
<li>Permission/block to give/receive damage<br />
- To allow and/or block damage given or received to players<br />
</li>
</ul>
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Detections (so far):</span></span></span><br />
<ul class="mycode_list"><li>Armor<br />
</li>
<li>C-Bug<br />
</li>
<li>Auto C-Bug<br />
</li>
<li>Car Fly<br />
</li>
<li>Dialog Spoof<br />
</li>
<li>Drive-By<br />
</li>
<li>Fake Kill/Death (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">flood</span></span>)<br />
</li>
<li>Fast Run<br />
</li>
<li>GodMode<br />
</li>
<li>Health<br />
</li>
<li>Connection Flood<br />
</li>
<li>Interior<br />
</li>
<li>Special Action (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">All</span></span>)<br />
</li>
<li>Money<br />
</li>
<li>Multi Connection<br />
</li>
<li>No Fall Damage<br />
</li>
<li>Ping<br />
</li>
<li>Player Checkpoint<br />
</li>
<li>Player Position (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Fly, Airbreak, Teleport</span></span>)<br />
</li>
<li>Race Checkpoint<br />
</li>
<li>Skin<br />
</li>
<li>Vehicle Fast Enter/Exit<br />
</li>
<li>Vehicle Health<br />
</li>
<li>Vehicle Mod (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Invalid, Cheat</span></span>)<br />
</li>
<li>Vehicle Speed<br />
</li>
<li>Virtual World<br />
</li>
<li>Weapon (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Forbbiden, Invalid, Cheat</span></span>)<br />
</li>
<li>Ammo (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Infinite, Invalid, Cheat</span></span>)<br />
</li>
<li>Rapid Fire<br />
</li>
<li>Free Cam<br />
</li>
<li>Player Velocity (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">troll</span></span>)<br />
</li>
<li>Vehicle Velocity (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">troll</span></span>)<br />
</li>
<li>Fake AFK<br />
</li>
<li>Fake Lag<br />
</li>
<li>Invisible<br />
</li>
<li>Damage (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Invalid, Flood</span></span>)<br />
</li>
<li>Silent Aim<br />
</li>
<li>Pro Aim<br />
</li>
<li>Quick Vehicle Change (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">shot, pull, teleport</span></span>)<br />
</li>
<li>Anti Kick<br />
</li>
<li>Invalid Bullet Crasher<br />
</li>
<li>Invalid Damage Crasher<br />
</li>
<li>Invalid Camera Crasher<br />
</li>
<li>NOP (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">TogglePlayerSpectating, TogglePlayerControllable, RemovePlayerFromVehicle, SpawnPlayer, SetPlayerPos</span></span>)<br />
</li>
<li>Attached Objects (<span style="font-style: italic;" class="mycode_i"><span style="color: #005dc2;" class="mycode_color">Full protection</span></span>)<br />
</li>
<li>RCon <span style="color: #ff4136;" class="mycode_color">[new]</span><br />
</li>
<li>Force Spawn<span style="color: #ff4136;" class="mycode_color"> [new]</span><br />
</li>
<li>Fast Respawn<span style="color: #ff4136;" class="mycode_color"> [new]</span><br />
</li>
<li>Flood Cheats <span style="color: #ff4136;" class="mycode_color">[new]</span><br />
</li>
</ul>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Resources required:</span></span></span><br />
<ol type="1" class="mycode_list"><li><span style="color: #9a00b2;" class="mycode_color">[Plugin]</span> <span style="font-style: italic;" class="mycode_i">GVar</span><br />
</li>
</ol>
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Functions added so far:</span></span></span><br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color">Anti-cheat configuration:</span></span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>stock EAC_InitPlayerAC(playerid) // Starts the anti-cheat for the player<br />
stock EAC_StopPlayerAC(playerid) // Stops the anti-cheat for the player<br />
stock EAC_IsActivePlayerAC(playerid) // Checks if the anti-cheat is active (started) for the player<br />
stock EAC_PausePlayerAC(playerid, bool:pause, cheatid = -1) // Pauses a given protection for the player<br />
stock EAC_IsPausedPlayerAC(playerid, cheatid) // Returns if a given protection is paused for the player<br />
stock EAC_GetCheatNameAC(cheatid) // Returns the name of the cheat with base no index<br />
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<br />
stock EAC_Auth(const token[]) // Authenticate the anti-cheat token to enable it</code></div></div><br />
Damage control:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>stock EWD_SetPlayerWeaponRange(playerid, weaponid, Float:range) // Change the range of a given weapon for the player<br />
stock Float:EWD_GetPlayerWeaponRange(playerid, weaponid) // Returns the range of a given weapon for the player<br />
stock EWD_SetPlayerWeaponDamage(playerid, weaponid, Float:amount) // Change the damage of a given weapon for the player<br />
stock Float:EWD_GetPlayerWeaponDamage(playerid, weaponid) // Returns the damage of a given weapon of the player<br />
stock EWD_SetPlayerBodyHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage of a given weapon and body part for the player<br />
stock Float:EWD_GetPlayerBodyHitDamage(playerid, weaponid, bodypart) // Returns the damage of a given weapon and body part for the player<br />
stock EWD_BlockPlayerBodyHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage block of a given weapon and body part for the player<br />
stock Float:EWD_GetPlayerBlockedBodyHitDamage(playerid, weaponid, bodypart) // Returns the damage block of a given weapon and body part for the player<br />
stock EWD_BlockPlayerArmourHitDamage(playerid, weaponid, bodypart, Float:amount) // Changes the damage block of a given weapon, exclusively if wearing a vest, for the player<br />
stock Float:EWD_GetPlayerBlockedArmourHitDamage(playerid, weaponid, bodypart) // Returns the damage block of a given weapon, exclusively if using a vest, of the player<br />
stock EWD_TogglePlayerGiveBulletDamage(playerid, bool:toggle) // Enables/Disables the damage sent from the player<br />
stock EWD_IsPlayerGivingBulletDamage(playerid) // Returns whether the damage sent from the player is enabled or not<br />
stock EWD_TogglePlayerTakeBulletDamage(playerid, bool:toggle) // Enables/Disables the damage received from the player<br />
stock EWD_IsPlayerTakingBulletDamage(playerid) // Returns whether the damage received from the player is enabled or not<br />
stock EWD_EnablePlayerFriendlyFire(playerid, bool:enable) // Enables/Disables the damage sent to players on the same team</code></div></div><br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color">Additional functions:</span></span><br />
</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>stock EAC_SetPlayerGodMode(playerid, bool:active) // Enables/Disables player's God mode<br />
stock EAC_IsPlayerInGodMode(playerid) // Returns whether the player is in God mode or not<br />
stock EAC_SetPlayerMoney(playerid, money) // Sets the player's money<br />
stock EAC_UpdatePlayerMoney(playerid) // Only updates the player's money on the screen based on the anti-cheat memory<br />
stock EAC_GetPlayerFreeAttachedObjectSlot(playerid) // Returns the first free slot for attacked objects on the player's body<br />
stock EAC_GetPlayerAttachedObjectModelIndex(playerid, modelid) // Returns the index of the attacked object on the player's body based on the object's model<br />
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)<br />
stock EAC_ApplyPlayerAttachedObjects(playerid) // Applies the attacked objects to the player's body based on the anti-cheat's memory<br />
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<br />
stock EAC_GetPlayerWeaponData(playerid, slot, &amp;weapons, &amp;ammo) // Returns the player's weapons, based on the anti-cheat's memory (and not on the client's date)<br />
stock EAC_SetPlayerWeapon(playerid, weaponid, ammo) // Sets a specific weapon for the player<br />
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)</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: small;" class="mycode_size"><span style="font-size: large;" class="mycode_size"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Project maintenance:</span></span></span></span></span><br />
<br />
Despite being recent, it is a solid, stable and extremely optimized project. Always focused on improvements and new implementations<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Server where it is being tested:</span></span></span><br />
<br />
If you are interested in checking the anti-cheat and its effectiveness, just access the server below:<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-style: italic;" class="mycode_i">Os Aposented PvP</span></span><span style="font-style: italic;" class="mycode_i">: </span><a href="samp://104.234.224.87:7777" target="_blank" rel="noopener" class="mycode_url">104.234.224.87:7777</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #00369b;" class="mycode_color"><span style="font-size: large;" class="mycode_size">More information:</span></span></span><br />
<br />
Discord: <a href="https://discord.gg/cuFaYC9UMQ" target="_blank" rel="noopener" class="mycode_url">https://discord.gg/cuFaYC9UMQ</a><br />
<br />
Now you can:<ul class="mycode_list"><li>Interact with a custom Bot for key and payment automation<br />
</li>
<li>Report bugs<br />
</li>
<li>Send feedback<br />
</li>
<li>Private call with me to discuss anti-cheat<br />
</li>
<li>Download<br />
</li>
</ul>
<br />
Translated from portalsamp.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DOF2.1 (DOF2 Updated)]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3003</link>
			<pubDate>Wed, 25 Dec 2024 06:01:15 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=6320">Collw</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3003</guid>
			<description><![CDATA[I was looking for alternatives to DOF2 that are compatible with the latest versions of the Pawno compiler (3.10.10 and 3.10.11), but I couldn't find any viable options. Since I couldn't adapt to using y_ini or similar libraries, I decided to use the latest available version of DOF2 and update it to suit my needs. I named it DOF2.1.<br />
<br />
<a href="https://github.com/xWendorion/DOF2.1-Include/releases" target="_blank" rel="noopener" class="mycode_url">https://github.com/xWendorion/DOF2.1-Include/releases</a><br />
<br />
The library is fully compatible with both San Andreas Multiplayer and Open Multiplayer. Feel free to improve or adapt it to meet your specific requirements.]]></description>
			<content:encoded><![CDATA[I was looking for alternatives to DOF2 that are compatible with the latest versions of the Pawno compiler (3.10.10 and 3.10.11), but I couldn't find any viable options. Since I couldn't adapt to using y_ini or similar libraries, I decided to use the latest available version of DOF2 and update it to suit my needs. I named it DOF2.1.<br />
<br />
<a href="https://github.com/xWendorion/DOF2.1-Include/releases" target="_blank" rel="noopener" class="mycode_url">https://github.com/xWendorion/DOF2.1-Include/releases</a><br />
<br />
The library is fully compatible with both San Andreas Multiplayer and Open Multiplayer. Feel free to improve or adapt it to meet your specific requirements.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Online Music from Youtube - API]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2566</link>
			<pubDate>Mon, 22 Jan 2024 15:08:48 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4626">eubluen</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2566</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size">Download:</span></span></div>
<div style="text-align: center;" class="mycode_align"><a href="https://github.com/devbluen/OnlineMusic-Samp" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size">Github - Download</span></span></a><br />
<br />
</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size">Preview on Youtube:</span><br />
</span><iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/iVHE9a3YXic" frameborder="0" allowfullscreen="true"></iframe><br />
<br />
</div>
<div style="text-align: center;" class="mycode_align">Enjoy :)</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size">Download:</span></span></div>
<div style="text-align: center;" class="mycode_align"><a href="https://github.com/devbluen/OnlineMusic-Samp" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size">Github - Download</span></span></a><br />
<br />
</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size">Preview on Youtube:</span><br />
</span><iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/iVHE9a3YXic" frameborder="0" allowfullscreen="true"></iframe><br />
<br />
</div>
<div style="text-align: center;" class="mycode_align">Enjoy :)</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Chat Config]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2545</link>
			<pubDate>Tue, 09 Jan 2024 09:56:37 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4626">eubluen</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2545</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: xx-large;" class="mycode_size">Chat Config</span></span><br />
</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">Download</span>:</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size"><a href="https://github.com/devbluen/ChatConfig-Samp" target="_blank" rel="noopener" class="mycode_url">Chat Config - Github</a><br />
</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">Summary of the Include:</span></div>
<div style="text-align: center;" class="mycode_align">- You will be able to globally or per player control whether they will have the chat enabled or not. It's an include that will help those who want to create an RP server or a project without chat. More information is available in the repository on GitHub. If there are any bugs or anything of the sort, just give me a heads up.</div>
<div style="text-align: center;" class="mycode_align">Enjoy :)</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: xx-large;" class="mycode_size">Chat Config</span></span><br />
</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">Download</span>:</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: x-large;" class="mycode_size"><a href="https://github.com/devbluen/ChatConfig-Samp" target="_blank" rel="noopener" class="mycode_url">Chat Config - Github</a><br />
</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">Summary of the Include:</span></div>
<div style="text-align: center;" class="mycode_align">- You will be able to globally or per player control whether they will have the chat enabled or not. It's an include that will help those who want to create an RP server or a project without chat. More information is available in the repository on GitHub. If there are any bugs or anything of the sort, just give me a heads up.</div>
<div style="text-align: center;" class="mycode_align">Enjoy :)</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Circular Progress]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2504</link>
			<pubDate>Sat, 02 Dec 2023 00:29:36 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4626">eubluen</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2504</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: xx-large;" class="mycode_size">Circular Progress</span></span></div>
<div style="text-align: center;" class="mycode_align">Download:</div>
<div style="text-align: center;" class="mycode_align"><a href="https://github.com/igdiogo/Circular-Progress-Samp" target="_blank" rel="noopener" class="mycode_url"><span style="font-size: x-large;" class="mycode_size">Github Download</span></a></div>
<span style="font-size: medium;" class="mycode_size">[url=https://github.com/igdiogo/Circular-Progress-Samp][/url]</span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">freesampscripts - </span>Create source code</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">blueN - </span>Recreate code with new natives and update funtions</div>
<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">Preview</span></span><span style="font-weight: bold;" class="mycode_b"><span style="font-size: 1pt;" class="mycode_size">:</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/xulm9H0PnKI" frameborder="0" allowfullscreen="true"></iframe></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: xx-large;" class="mycode_size">Circular Progress</span></span></div>
<div style="text-align: center;" class="mycode_align">Download:</div>
<div style="text-align: center;" class="mycode_align"><a href="https://github.com/igdiogo/Circular-Progress-Samp" target="_blank" rel="noopener" class="mycode_url"><span style="font-size: x-large;" class="mycode_size">Github Download</span></a></div>
<span style="font-size: medium;" class="mycode_size">[url=https://github.com/igdiogo/Circular-Progress-Samp][/url]</span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">freesampscripts - </span>Create source code</div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">blueN - </span>Recreate code with new natives and update funtions</div>
<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">Preview</span></span><span style="font-weight: bold;" class="mycode_b"><span style="font-size: 1pt;" class="mycode_size">:</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/xulm9H0PnKI" frameborder="0" allowfullscreen="true"></iframe></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Advanced Gangzones (a_zone) updated.]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2374</link>
			<pubDate>Sun, 26 Mar 2023 01:50:15 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=3361">pushline</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2374</guid>
			<description><![CDATA[I had errors in my DM GM with getting buggy with 3 numbers. So I took the main project (with the last update in 2016) and created a function that creates the 3rd number.<br />
The function that does this by default the creator did it in an ugly/difficult way, so I didn't bother to fix it, because it uses mathematics to create the numbers.<br />
<br />
<br />
If you know how to fix or even create a more optimized function, fork the project and create a pull request.<br />
<br />
Github link:<br />
<a href="https://github.com/pushline/Advanced-Gang-Zones" target="_blank" rel="noopener" class="mycode_url">https://github.com/pushline/Advanced-Gang-Zones</a>]]></description>
			<content:encoded><![CDATA[I had errors in my DM GM with getting buggy with 3 numbers. So I took the main project (with the last update in 2016) and created a function that creates the 3rd number.<br />
The function that does this by default the creator did it in an ugly/difficult way, so I didn't bother to fix it, because it uses mathematics to create the numbers.<br />
<br />
<br />
If you know how to fix or even create a more optimized function, fork the project and create a pull request.<br />
<br />
Github link:<br />
<a href="https://github.com/pushline/Advanced-Gang-Zones" target="_blank" rel="noopener" class="mycode_url">https://github.com/pushline/Advanced-Gang-Zones</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[samp-assist | Assist system for SA-MP]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2361</link>
			<pubDate>Sun, 26 Feb 2023 14:35:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4621">Propalica</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2361</guid>
			<description><![CDATA[<div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">Assist system</span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #1e92f7;" class="mycode_color">Installation:</span><br />
<br />
<span style="color: #000000;" class="mycode_color"><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include &lt;assist&gt;</code></div></div></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #1e92f7;" class="mycode_color">Introduction:</span></span><br />
<br />
<span style="color: #000000;" class="mycode_color">Since SA-MP was released there was no possibility to check assistentions on kill. Today I am releasing script which will help you to detect assistentions on kill.</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #1e92f7;" class="mycode_color">Github:</span></span><br />
<br />
<span style="color: #000000;" class="mycode_color"><a href="https://github.com/Aleks4k/samp-assist" target="_blank" rel="noopener" class="mycode_url">https://github.com/Aleks4k/samp-assist</a></span><br />
<br />
<span style="color: #1e92f7;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Credits:</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">billz </span>and his old assist filterscript for idea.]]></description>
			<content:encoded><![CDATA[<div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">Assist system</span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #1e92f7;" class="mycode_color">Installation:</span><br />
<br />
<span style="color: #000000;" class="mycode_color"><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include &lt;assist&gt;</code></div></div></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #1e92f7;" class="mycode_color">Introduction:</span></span><br />
<br />
<span style="color: #000000;" class="mycode_color">Since SA-MP was released there was no possibility to check assistentions on kill. Today I am releasing script which will help you to detect assistentions on kill.</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #1e92f7;" class="mycode_color">Github:</span></span><br />
<br />
<span style="color: #000000;" class="mycode_color"><a href="https://github.com/Aleks4k/samp-assist" target="_blank" rel="noopener" class="mycode_url">https://github.com/Aleks4k/samp-assist</a></span><br />
<br />
<span style="color: #1e92f7;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Credits:</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">billz </span>and his old assist filterscript for idea.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[samp-vehicle-framework]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2246</link>
			<pubDate>Tue, 09 Nov 2021 15:51:09 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=2520">Mergevos</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2246</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Vehicle framework</span></span><br />
<br />
<br />
<br />
<span style="font-size: small;" class="mycode_size">Vehicle framework is rich library providing you with many simplified and new functions.<br />
<br />
It comes with many new tags, also it implements vehicle groups.?<br />
<br />
<br />
<br />
Take a look at:?<br />
<br />
<br />
<br />
<a href="https://github.com/Mergevos/samp-vehicle-framework" target="_blank" rel="noopener" class="mycode_url">Mergevos/samp-vehicle-framework (github.com)<br />
<br />
<br />
<br />
a</a>nd install it with:<br />
<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sampctl p install Mergevos/samp-vehicle-framework</code></div></div></span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Vehicle framework</span></span><br />
<br />
<br />
<br />
<span style="font-size: small;" class="mycode_size">Vehicle framework is rich library providing you with many simplified and new functions.<br />
<br />
It comes with many new tags, also it implements vehicle groups.?<br />
<br />
<br />
<br />
Take a look at:?<br />
<br />
<br />
<br />
<a href="https://github.com/Mergevos/samp-vehicle-framework" target="_blank" rel="noopener" class="mycode_url">Mergevos/samp-vehicle-framework (github.com)<br />
<br />
<br />
<br />
a</a>nd install it with:<br />
<br />
<br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sampctl p install Mergevos/samp-vehicle-framework</code></div></div></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Motion styles | samp-walking-styles | samp-running-styles]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2196</link>
			<pubDate>Thu, 29 Jul 2021 15:10:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=2520">Mergevos</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2196</guid>
			<description><![CDATA[These libraries allow you to change player's running (not sprinting)?and walking styles. It means if you apply a walking/running style to a player, instead of classic walking/running behaviour taken from skin player is using, it will apply an animation to manipulate with player's motion.<br />
<br />
<br />
<br />
More on:?<br />
<br />
<br />
<br />
<a href="https://github.com/Mergevos/samp-walking-styles" target="_blank" rel="noopener" class="mycode_url">Mergevos/samp-walking-styles: Ben Jackster's walking styles script, forked by me, allowing player to choose between 15 walking styles (github.com)</a><br />
<br />
<br />
<br />
<a href="https://github.com/Mergevos/samp-running-styles" target="_blank" rel="noopener" class="mycode_url">Mergevos/samp-running-styles: Run in your style! (github.com)</a>]]></description>
			<content:encoded><![CDATA[These libraries allow you to change player's running (not sprinting)?and walking styles. It means if you apply a walking/running style to a player, instead of classic walking/running behaviour taken from skin player is using, it will apply an animation to manipulate with player's motion.<br />
<br />
<br />
<br />
More on:?<br />
<br />
<br />
<br />
<a href="https://github.com/Mergevos/samp-walking-styles" target="_blank" rel="noopener" class="mycode_url">Mergevos/samp-walking-styles: Ben Jackster's walking styles script, forked by me, allowing player to choose between 15 walking styles (github.com)</a><br />
<br />
<br />
<br />
<a href="https://github.com/Mergevos/samp-running-styles" target="_blank" rel="noopener" class="mycode_url">Mergevos/samp-running-styles: Run in your style! (github.com)</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[TSYS RPG system toolkit - depreciated]]></title>
			<link>https://forum.open.mp/showthread.php?tid=2033</link>
			<pubDate>Tue, 18 May 2021 15:21:35 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=3767">_tAxI_</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=2033</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b"><span style="color: #008E02;" class="mycode_color">What is it?</span> </span>-  This is a integrated RPG type system for SA-MP with SQlite backend saving (is that even still a thing???)<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #008E02;" class="mycode_color">What does it do?</span> - </span>Adds RPG type functionallity such as: Vehicle ownership and control (modsaving, booby traps, spawn location setting, admin locking and administrator functions etc), Vehicle fuel system, house ownership system, business ownership system, basic anticheat (will likely need an overhaul though), Banking and money tracking (ATM etc), minimap icon streaming, user login and autosaving etc.<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #008E02;" class="mycode_color">Depreciated??? </span>-</span> I haven't worked on this code in years and likely never will again... I was however asked by a member of the community to re-post the code i designed years ago up here for the very few that still use it lol <span style="font-weight: bold;" class="mycode_b"><span style="color: #C10300;" class="mycode_color">(Thanks Russian RPG Fam!)</span></span><br />
<br />
<span style="color: #005DC2;" class="mycode_color"><span style="text-decoration: underline;" class="mycode_u">Instructions for use and integration are in the readme file. This system also has in game editing for some of the systems but largely speaking it uses a batch import system which requires a specific formatting to startup the server and get everything ready to go so make sure to <span style="font-weight: bold;" class="mycode_b">READ IT BEFORE STARTING THE SERVER FIRST TIME.</span></span></span><br />
<br />
I'm uploading it to my own private server so it shouldn't disappear any time soon. Use what you want, any way you want, and enjoy. This is posted up completely open with no restrictions so go to town guys.<br />
<br />
A Demo of the fully integrated system can be downloaded from <a href="https://www.burgershot.gg/showthread.php?tid=2034" target="_blank" rel="noopener" class="mycode_url"><span style="color: #E86E04;" class="mycode_color"><span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b">This Thread</span></span></span></a><span style="color: #E86E04;" class="mycode_color"><span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b">.</span></span></span><br />
<br />
<a href="http://files.3dhobbymart.com/SAMP/tsys_3.0.0.zip" target="_blank" rel="noopener" class="mycode_url"><span style="color: #E86E04;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b">Download</span></span></span></span></span></a>]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b"><span style="color: #008E02;" class="mycode_color">What is it?</span> </span>-  This is a integrated RPG type system for SA-MP with SQlite backend saving (is that even still a thing???)<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #008E02;" class="mycode_color">What does it do?</span> - </span>Adds RPG type functionallity such as: Vehicle ownership and control (modsaving, booby traps, spawn location setting, admin locking and administrator functions etc), Vehicle fuel system, house ownership system, business ownership system, basic anticheat (will likely need an overhaul though), Banking and money tracking (ATM etc), minimap icon streaming, user login and autosaving etc.<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #008E02;" class="mycode_color">Depreciated??? </span>-</span> I haven't worked on this code in years and likely never will again... I was however asked by a member of the community to re-post the code i designed years ago up here for the very few that still use it lol <span style="font-weight: bold;" class="mycode_b"><span style="color: #C10300;" class="mycode_color">(Thanks Russian RPG Fam!)</span></span><br />
<br />
<span style="color: #005DC2;" class="mycode_color"><span style="text-decoration: underline;" class="mycode_u">Instructions for use and integration are in the readme file. This system also has in game editing for some of the systems but largely speaking it uses a batch import system which requires a specific formatting to startup the server and get everything ready to go so make sure to <span style="font-weight: bold;" class="mycode_b">READ IT BEFORE STARTING THE SERVER FIRST TIME.</span></span></span><br />
<br />
I'm uploading it to my own private server so it shouldn't disappear any time soon. Use what you want, any way you want, and enjoy. This is posted up completely open with no restrictions so go to town guys.<br />
<br />
A Demo of the fully integrated system can be downloaded from <a href="https://www.burgershot.gg/showthread.php?tid=2034" target="_blank" rel="noopener" class="mycode_url"><span style="color: #E86E04;" class="mycode_color"><span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b">This Thread</span></span></span></a><span style="color: #E86E04;" class="mycode_color"><span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b">.</span></span></span><br />
<br />
<a href="http://files.3dhobbymart.com/SAMP/tsys_3.0.0.zip" target="_blank" rel="noopener" class="mycode_url"><span style="color: #E86E04;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b">Download</span></span></span></span></span></a>]]></content:encoded>
		</item>
	</channel>
</rss>