@@ -221,7 +221,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
221
221
stock bool: va_SendClientMessage (playerid, colour, const fmat[], GLOBAL_TAG_TYPES: ...)
222
222
{
223
223
if (YSI_CheckNumargs__ (3 ))
224
- return bool: SendClientMessage (playerid, colour, __const ( fmat) );
224
+ return bool: SendClientMessage (playerid, colour, fmat);
225
225
return
226
226
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (3 )),
227
227
bool: SendClientMessage (playerid, colour, YSI_UNSAFE_HUGE_STRING);
@@ -230,7 +230,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
230
230
stock bool: va_SendClientMessageToAll (colour, const fmat[], GLOBAL_TAG_TYPES: ...)
231
231
{
232
232
if (YSI_CheckNumargs__ (2 ))
233
- return bool: SendClientMessageToAll (colour, __const ( fmat) );
233
+ return bool: SendClientMessageToAll (colour, fmat);
234
234
return
235
235
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (2 )),
236
236
bool: SendClientMessageToAll (colour, YSI_UNSAFE_HUGE_STRING);
@@ -239,7 +239,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
239
239
stock bool: va_SendPlayerMessageToPlayer (playerid, senderid, const fmat[], GLOBAL_TAG_TYPES: ...)
240
240
{
241
241
if (YSI_CheckNumargs__ (3 ))
242
- return bool: SendPlayerMessageToPlayer (playerid, senderid, __const ( fmat) );
242
+ return bool: SendPlayerMessageToPlayer (playerid, senderid, fmat);
243
243
return
244
244
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (3 )),
245
245
bool: SendPlayerMessageToPlayer (playerid, senderid, YSI_UNSAFE_HUGE_STRING);
@@ -248,7 +248,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
248
248
stock bool: va_SendPlayerMessageToAll (senderid, const fmat[], GLOBAL_TAG_TYPES: ...)
249
249
{
250
250
if (YSI_CheckNumargs__ (2 ))
251
- return bool: SendPlayerMessageToAll (senderid, __const ( fmat) );
251
+ return bool: SendPlayerMessageToAll (senderid, fmat);
252
252
return
253
253
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (2 )),
254
254
bool: SendPlayerMessageToAll (senderid, YSI_UNSAFE_HUGE_STRING);
@@ -257,7 +257,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
257
257
stock bool: va_GameTextForPlayer (playerid, const fmat[], time, style, GLOBAL_TAG_TYPES: ...)
258
258
{
259
259
if (YSI_CheckNumargs__ (4 ))
260
- return bool: GameTextForPlayer (playerid, __const ( fmat) , time, style);
260
+ return bool: GameTextForPlayer (playerid, fmat, time, style);
261
261
return
262
262
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (4 )),
263
263
bool: GameTextForPlayer (playerid, YSI_UNSAFE_HUGE_STRING, time, style);
@@ -266,7 +266,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
266
266
stock bool: va_GameTextForAll (const fmat[], time, style, GLOBAL_TAG_TYPES: ...)
267
267
{
268
268
if (YSI_CheckNumargs__ (3 ))
269
- return bool: GameTextForAll (__const ( fmat) , time, style);
269
+ return bool: GameTextForAll (fmat, time, style);
270
270
return
271
271
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (3 )),
272
272
bool: GameTextForAll (YSI_UNSAFE_HUGE_STRING, time, style);
@@ -284,7 +284,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
284
284
stock bool: va_SetGameModeText (const fmat[], GLOBAL_TAG_TYPES: ...)
285
285
{
286
286
if (YSI_CheckNumargs__ (1 ))
287
- return bool: SetGameModeText (__const ( fmat) );
287
+ return bool: SetGameModeText (fmat);
288
288
return
289
289
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (1 )),
290
290
bool: SetGameModeText (YSI_UNSAFE_HUGE_STRING);
@@ -319,7 +319,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
319
319
stock Menu: va_CreateMenu (const fmat[], columns, Float: x, Float: y, Float: col1width, Float: col2width = 0 .0 , GLOBAL_TAG_TYPES: ...)
320
320
{
321
321
if (YSI_CheckNumargs__ (6 ))
322
- return CreateMenu (__const ( fmat) , columns, x, y, col1width, col2width);
322
+ return CreateMenu (fmat, columns, x, y, col1width, col2width);
323
323
return
324
324
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (6 )),
325
325
CreateMenu (YSI_UNSAFE_HUGE_STRING, columns, x, y, col1width, col2width);
@@ -328,7 +328,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
328
328
stock va_AddMenuItem (Menu: menuid, column, const fmat[], GLOBAL_TAG_TYPES: ...)
329
329
{
330
330
if (YSI_CheckNumargs__ (3 ))
331
- return AddMenuItem (menuid, column, __const ( fmat) );
331
+ return AddMenuItem (menuid, column, fmat);
332
332
return
333
333
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (3 )),
334
334
AddMenuItem (menuid, column, YSI_UNSAFE_HUGE_STRING);
@@ -337,7 +337,7 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
337
337
stock bool: va_SetMenuColumnHeader (Menu: menuid, column, const fmat[], GLOBAL_TAG_TYPES: ...)
338
338
{
339
339
if (YSI_CheckNumargs__ (3 ))
340
- return bool: SetMenuColumnHeader (menuid, column, __const ( fmat) );
340
+ return bool: SetMenuColumnHeader (menuid, column, fmat);
341
341
return
342
342
format (YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___ (3 )),
343
343
bool: SetMenuColumnHeader (menuid, column, YSI_UNSAFE_HUGE_STRING);
0 commit comments