@@ -40,7 +40,7 @@ Compatibility is quite high:
4040-  Almost all SA-MP ** scripting functions**  and ** callbacks**  are
4141  implemented.
4242-  ** Database**  functions (` db_* ` ) are implemented.
43- -  SA-MP server ** plugins**  work unmodified.
43+ -  SA-MP server ** plugins**  work unmodified, if they don't use memory hacking .
4444-  SA-MP style ** rcon**  commands are available from the server console
4545  and the ingame console.
4646
@@ -83,6 +83,9 @@ features:
8383-  You can ** load plugins dynamically** , while the server is running.
8484  Use the ` loadplugin `  console command for this.
8585
86+ -  There is no hard-coded max filterscript count, the ** number of
87+   running filterscripts is unlimited** .
88+ 
8689## Installation  
8790
8891* amx*  consists of a binary server module (.dll/.so) and a Lua resource.
@@ -203,7 +206,7 @@ Information about this is lined out below.
203206
204207  The meta.xml files of gamemodes and filterscripts are slightly
205208  different. Two resources, amx-test and amx-fs-test, are included
206-   with  the * amx*  download  as examples. Most times you can simply
209+   in  the * amx*  repository  as examples. Most times you can simply
207210  copy-paste these to a new resource and adjust the names in it.
208211
209212-  To specify what ** filterscripts to autostart**  when * amx*  loads,
@@ -224,10 +227,10 @@ Information about this is lined out below.
224227  plugins to start, separated by spaces. For example:
225228
226229  ``` xml 
227-   <setting  name =" plugins"   value =" irc sampmysql "  />
230+   <setting  name =" plugins"   value =" irc mysql "  />
228231  ``` 
229232
230-   This will load irc.dll and sampmysql .dll on Windows, or .so on
233+   This will load irc.dll and mysql .dll on Windows, or .so on
231234  Linux.
232235
233236-  jbeta's mapcycler resource (shipped with the MTA server) is used for
@@ -675,12 +678,18 @@ Even though *amx* offers a high level of compatibility, not everything
675678is perfect. Below is a list of limitations that may or may not be
676679addressed in later versions of * amx*  and Multi Theft Auto.
677680
681+ -  The following scripting functions will require certain resources
682+   installed to have effect when called: DisableInteriorEnterExits
683+   (disable enex markers implemented by "interiors" resource,
684+   otherwise they are always disabled), SendDeathMessage (invoke
685+   graphical death messages from "killmessages" resource).
686+ 
678687-  The following scripting functions are currently not implemented and
679-   will have no effect when called: DisableInteriorEnterExits ,
680-   EnableStuntBonusForAll, EnableStuntBonusForPlayer, EnableTirePopping 
681-   (tire popping is always on), PlayerPlaySound, SendDeathMessage (use 
682-   the "killmessages" resource on your server instead for graphical 
683-   death messages), SetNameTagDrawDistance, TextDrawSetProportional .
688+   will have no effect when called: DisableRemoteVehicleCollisions ,
689+   EnablePlayerCameraTarget, EnableStuntBonusForAll, 
690+   EnableStuntBonusForPlayer, EnableTirePopping  (tire popping is
691+   always on), EnableVehicleFriendlyFire, SetObjectNoCameraCol, 
692+   SetPlayerShopName, TextDrawSetProportional, TextDrawSetSelectable .
684693
685694## Credits  
686695
0 commit comments