17.02.2009, 16:57
pawn Код:
public WeaponCheck()
{
new string[128];
for(new i; i<MAX_PLAYERS; i++)
{
if (AccountInfo[i][AdminLevel] >= 1 || IsPlayerAdmin(i))
{
}
else
{
// my code is here
}
}
return 1;
}
public WeaponCheck()
{
new string[128];
for(new i; i<MAX_PLAYERS; i++)
{
if (AccountInfo[i][AdminLevel] >= 1 || IsPlayerAdmin(i))
{
}
else
{
// my code is here
}
}
return 1;
}
Originally Posted by whooper
wow i hate it when people dont try i give this a "F"
|
public WeaponCheck()
{
new string[128];
for(new i; i<MAX_PLAYERS; i++)
{
if (AccountInfo[i][AdminLevel] >= 1 || IsPlayerAdmin(i))
{
}
else
{
if (GetPlayerVirtualWorld(i) == 0)
{
//stuffage here?
}
// my code is here
}
}
return 1;
}
if (AccountInfo[i][AdminLevel] >= 1 || IsPlayerAdmin(i))
{
}
else
{
// my code is here
}
if (AccountInfo[i][AdminLevel] < 1 || !IsPlayerAdmin(i))
{
//code here
}