24.02.2012, 02:55
(
Последний раз редактировалось thaw_ps; 25.02.2012 в 01:56.
)
Erros no textdraw
C:\Documents and Settings\thaw\Desktop\0.3d\gamemodes\GW.pwn(108) : error 035: argument type mismatch (argument 1) C:\Documents and Settings\thaw\Desktop\0.3d\gamemodes\GW.pwn(109) : error 035: argument type mismatch (argument 1) C:\Documents and Settings\thaw\Desktop\0.3d\gamemodes\GW.pwn(110) : error 035: argument type mismatch (argument 1) C:\Documents and Settings\thaw\Desktop\0.3d\gamemodes\GW.pwn(111) : error 035: argument type mismatch (argument 1)
public OnGameModeExit() { TextDrawHideForAll(Textdraw0); TextDrawDestroy(Textdraw0); TextDrawHideForAll(Textdraw1); TextDrawDestroy(Textdraw1); return 1; }
public OnGameModeExit()
{
TextDrawHideForAll(Textdraw0);
TextDrawDestroy(Textdraw0);
TextDrawHideForAll(Textdraw1);
TextDrawDestroy(Textdraw1);
return 1;
}
public OnGameModeExit()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
TextDrawHideForAll(Textdraw0[i]);
TextDrawDestroy(Textdraw0[i]);
TextDrawHideForAll(Textdraw1[i]);
TextDrawDestroy(Textdraw1[i]);
}
return 1;
}