Search Results
What is the difference? Код: new Pickups[MAX_PLAYERS]; Код: new Pickups;
98
How to make it that you have the hockey mask from the singleplayer on your face?
80
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...
100
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...
185
Hello, how to make an anti bot attack system?
102
Hello, why this doesn't work under OnPlayerConnect: Код: SetPlayerWeather(playerid,9); SetPlayerTime(playerid,0,0);
128
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 >= ...
69
This doesn't work it just checks the first line of it, can you fix it?
314
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...
314
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?
314
And Код: if(playerOnline >= 2 && playerOnline <= 8) { if(GetTeamPlayersAlive(TEAM_RED) >= 0 && GetTeamPlayersAlive(TEAM_RED) <= 3) { TeamBalance(); } } ...
314
Will this work? Код: if(playerOnline >= 2 || 4 || 6 || 8) { if(GetTeamPlayersAlive(TEAM_RED) == 0 || 1 || 2 || 3) { TeamBalance(); } }
314
Hello, how can i make that a player can't see any pickup objects?
181