@@ -405,7 +405,7 @@ A number of new Lua functions were also introduced.
405
405
### pawn
406
406
407
407
``` lua
408
- variant pawn ( string fnName , ... )
408
+ variant pawn ( string fnName , ... )
409
409
```
410
410
411
411
Calls a Pawn function. The function must be public, must be defined in
@@ -422,7 +422,7 @@ local player = pawn('pawnTestfn1', 0.5, 'Test string')
422
422
### amxIsPluginLoaded
423
423
424
424
``` lua
425
- bool amxIsPluginLoaded ( string pluginName )
425
+ bool amxIsPluginLoaded ( string pluginName )
426
426
```
427
427
428
428
Checks if a specific SA-MP server plugin is currently loaded. pluginName
@@ -431,7 +431,7 @@ is the name of the plugin without a file extension.
431
431
### amxRegisterLuaPrototypes
432
432
433
433
``` lua
434
- bool amxRegisterLuaPrototypes ( table prototypes )
434
+ bool amxRegisterLuaPrototypes ( table prototypes )
435
435
```
436
436
437
437
Registers prototypes of Lua functions that can subsequently be called
@@ -453,15 +453,15 @@ amxRegisterLuaPrototypes(
453
453
### amxVersion
454
454
455
455
``` lua
456
- float amxVersion ( )
456
+ float amxVersion ( )
457
457
```
458
458
459
459
Returns the * amx* version as a floating point number, for example ` 1.3 ` .
460
460
461
461
### amxVersionString
462
462
463
463
``` lua
464
- string amxVersionString ( )
464
+ string amxVersionString ( )
465
465
```
466
466
467
467
Returns the complete * amx* version string.
@@ -474,7 +474,7 @@ unloaded.
474
474
### onAMXStart
475
475
476
476
``` lua
477
- onAMXStart ( resource res , string amxName )
477
+ onAMXStart ( resource res , string amxName )
478
478
```
479
479
480
480
Triggered when an .amx file has just finished loading and initializing.
@@ -489,7 +489,7 @@ registered their functions yet.
489
489
### onAMXStop
490
490
491
491
``` lua
492
- onAMXStop ( resource res , string amxName )
492
+ onAMXStop ( resource res , string amxName )
493
493
```
494
494
495
495
Triggered when an .amx file was unloaded. The source of this event is
0 commit comments