@@ -296,7 +296,7 @@ introduces. To use them, `#include <a_amx>` in Pawno.
296
296
[ clothes page ] : https://wiki.multitheftauto.com/wiki/CJ_Clothes
297
297
298
298
``` pawn
299
- native AddPlayerClothes ( playerid, type, index );
299
+ native AddPlayerClothes( playerid, type, index);
300
300
```
301
301
302
302
Applies the specified clothing to a player. See the [ clothes page] for a
@@ -306,7 +306,7 @@ visible effect on players with the CJ skin.
306
306
### GetPlayerClothes
307
307
308
308
``` pawn
309
- native GetPlayerClothes ( playerid, type );
309
+ native GetPlayerClothes( playerid, type);
310
310
```
311
311
312
312
Returns the clothes index of the specified type which the player is
@@ -317,7 +317,7 @@ relevant for players with the CJ skin.
317
317
### RemovePlayerClothes
318
318
319
319
``` pawn
320
- native RemovePlayerClothes ( playerid, type );
320
+ native RemovePlayerClothes( playerid, type);
321
321
```
322
322
323
323
Removes the specified clothing from a player. See the [ clothes page] for a
@@ -327,15 +327,15 @@ on players with the CJ skin.
327
327
### ShowPlayerMarker
328
328
329
329
``` pawn
330
- native ShowPlayerMarker ( playerid, show );
330
+ native ShowPlayerMarker( playerid, mode );
331
331
```
332
332
333
333
Shows or hides the blip of one specific player.
334
334
335
335
### SetVehicleModel
336
336
337
337
``` pawn
338
- native SetVehicleModel ( vehicleid, model )
338
+ native SetVehicleModel( vehicleid, model);
339
339
```
340
340
341
341
Changes the model of a vehicle; more practical than destroying and
@@ -344,7 +344,7 @@ recreating it.
344
344
### lua
345
345
346
346
``` pawn
347
- native lua ( const fnName[], {Float,_}:... );
347
+ native lua( const fnName[], {Float,_}:...);
348
348
```
349
349
350
350
Calls a Lua function. The function must be defined in a .lua file in the
@@ -361,7 +361,7 @@ new playerid = lua("luaTestfn1", 1.3, "Test string");
361
361
### amxRegisterPawnPrototypes
362
362
363
363
``` pawn
364
- native amxRegisterPawnPrototypes ( const prototype[][] );
364
+ native amxRegisterPawnPrototypes( const prototype[][]);
365
365
```
366
366
367
367
Registers prototypes for public functions that can be subsequently
@@ -385,15 +385,15 @@ amxRegisterPawnPrototypes(prototypes);
385
385
### amxVersion
386
386
387
387
``` pawn
388
- native amxVersion ( &Float:ver );
388
+ native amxVersion( &Float:ver);
389
389
```
390
390
391
391
Retrieves the * amx* version as a floating point number, e.g. ` 1.3 ` .
392
392
393
393
### amxVersionString
394
394
395
395
``` pawn
396
- native amxVersionString ( buffer[], size );
396
+ native amxVersionString( buffer[], size);
397
397
```
398
398
399
399
Retrieves the complete * amx* version string.
0 commit comments