Search Results
What is the difference?
Код:
new Pickups[MAX_PLAYERS];
Код:
new Pickups;
182
How to make it that you have the hockey mask from the singleplayer on your face?
143
It always says "You cannot use this Skin!":
Код:
CMD:skin(playerid,params[])
{
new skinid, string[128];
if(sscanf(params, "d", skinid)) return SendClientMessage(playerid, /skin skin...
175
Hello, i want that if a NPC connects, the NPC is getting banned. Is that correct or so?
Код:
if(IsPlayerNPC(playerid))
{
Ban(playerid);
}
Код:
if(IsPlayerNPC(playerid))
{
Ban(pla...
294
Hello, how to make an anti bot attack system?
175
Hello, why this doesn't work under OnPlayerConnect:
Код:
SetPlayerWeather(playerid,9);
SetPlayerTime(playerid,0,0);
203
Hello, why this code won't work? just the first line works the others not.
Код:
if(playerOnline >= 2 && GetTeamPlayersAlive(TEAM_RED) == 0) TeamRedSwitch();
else if(playerOnline >= ...
121
This doesn't work it just checks the first line of it, can you fix it?
535
Ok thank you but please help me if i want to do it like that, this doesn't work, can you fix it?
Код:
if(playerOnline >= 2)
{
if(GetTeamPlayersAlive(TEAM_RED) == 0)
{
Team...
535
Also it will for example like if there are 2 players online, it will check automatically and switch one player to TEAM_RED? Without checking if playerOnline is 4 for example?
535
And
Код:
if(playerOnline >= 2 && playerOnline <= 8)
{
if(GetTeamPlayersAlive(TEAM_RED) >= 0 && GetTeamPlayersAlive(TEAM_RED) <= 3)
{
TeamBalance();
}
}
...
535
Will this work?
Код:
if(playerOnline >= 2 || 4 || 6 || 8)
{
if(GetTeamPlayersAlive(TEAM_RED) == 0 || 1 || 2 || 3)
{
TeamBalance();
}
}
535
Hello, how can i make that a player can't see any pickup objects?
317