|
235 | 235 | #error MAX_GANG_ZONES must be >= 1 and <= 1024 |
236 | 236 | #endif |
237 | 237 |
|
238 | | -#if MAX_TEXT_DRAWS < 1 || MAX_TEXT_DRAWS > Text:2048 |
239 | | - #error MAX_TEXT_DRAWS must be >= 1 and <= Text:2048 |
| 238 | +#if MAX_TEXT_DRAWS < Text:1 || MAX_TEXT_DRAWS > Text:2048 |
| 239 | + #error MAX_TEXT_DRAWS must be >= 1 and <= 2048 |
240 | 240 | #endif |
241 | 241 |
|
242 | | -#if MAX_PLAYER_TEXT_DRAWS < 1 || MAX_PLAYER_TEXT_DRAWS > PlayerText:256 |
243 | | - #error MAX_PLAYER_TEXT_DRAWS must be >= 1 and <= PlayerText:256 |
| 242 | +#if MAX_PLAYER_TEXT_DRAWS < PlayerText:1 || MAX_PLAYER_TEXT_DRAWS > PlayerText:256 |
| 243 | + #error MAX_PLAYER_TEXT_DRAWS must be >= 1 and <= 256 |
244 | 244 | #endif |
245 | 245 |
|
246 | | -#if MAX_MENUS < 1 || MAX_MENUS > Menu:128 |
247 | | - #error MAX_MENUS must be >= 1 and <= Menu:128 |
| 246 | +#if MAX_MENUS < Menu:1 || MAX_MENUS > Menu:128 |
| 247 | + #error MAX_MENUS must be >= 1 and <= 128 |
248 | 248 | #endif |
249 | 249 |
|
250 | | -#if MAX_3DTEXT_GLOBAL < 1 || MAX_3DTEXT_GLOBAL > Text3D:1024 |
251 | | - #error MAX_3DTEXT_GLOBAL must be >= 1 and <= Text3D:1024 |
| 250 | +#if MAX_3DTEXT_GLOBAL < Text3D:1 || MAX_3DTEXT_GLOBAL > Text3D:1024 |
| 251 | + #error MAX_3DTEXT_GLOBAL must be >= 1 and <= 1024 |
252 | 252 | #endif |
253 | 253 |
|
254 | | -#if MAX_3DTEXT_PLAYER < 0 || MAX_3DTEXT_PLAYER > PlayerText3D:1024 |
255 | | - #error MAX_3DTEXT_PLAYER must be >= 0 and <= PlayerText3D:1024 |
| 254 | +#if MAX_3DTEXT_PLAYER < PlayerText3D:1 || MAX_3DTEXT_PLAYER > PlayerText3D:1024 |
| 255 | + #error MAX_3DTEXT_PLAYER must be >= 1 and <= 1024 |
256 | 256 | #endif |
257 | 257 |
|
258 | 258 | #if MAX_PICKUPS < 1 || MAX_PICKUPS > 4096 |
@@ -3175,11 +3175,11 @@ forward OnPlayerWeaponShot(playerid, weaponid, hittype, hitid, Float:fX, Float:f |
3175 | 3175 |
|
3176 | 3176 | /// <summary>This callback is called when a SendClientCheck request comletes</summary> |
3177 | 3177 | /// <param name="playerid">The ID of the player checked</param> |
3178 | | -/// <param name="type">The type of check performed</param> |
3179 | | -/// <param name="arg"></param> |
3180 | | -/// <param name="response">The result of the check</param> |
| 3178 | +/// <param name="actionid">The type of check performed</param> |
| 3179 | +/// <param name="memaddr">The address requested</param> |
| 3180 | +/// <param name="retndata">The result of the check</param> |
3181 | 3181 | /// <seealso name="SendClientCheck"/> |
3182 | | -forward OnClientCheckResponse(playerid, type, arg, response); |
| 3182 | +forward OnClientCheckResponse(playerid, actionid, memaddr, retndata); |
3183 | 3183 |
|
3184 | 3184 | /// <summary>This callback is called when a SendClientCheck request comletes</summary> |
3185 | 3185 | /// <param name="playerid">The ID of the player who got cash from the game</param> |
|
0 commit comments