12.01.2012, 04:37
Well I keep trying to make a small mission that triggers when I type /mission as admin. I don't get it why but it's not working.
This command should be for a specific team. So when admin types /missionstart it should give all players from Team 1 message "Deffend the truck!" and from the other side they should get the checkpoint and message.
The code looks retarded here, but it's normal in the GM so don't worry, it's not lost of indetification...
This command should be for a specific team. So when admin types /missionstart it should give all players from Team 1 message "Deffend the truck!" and from the other side they should get the checkpoint and message.
Код HTML:
if (strcmp("/startmission", cmdtext, true) == 0) { if(!IsPlayerAdmin(playerid)) { SendClientMessage(playerid, COLOR_RED, "<!>You are not an admin!"); return 1; } if(GetPlayerTeam(playerid) == 1) { SendClientMessage(playerid, COLOR_LIGHTBLUE, "<!>Mission: Defend the truck!"); return 1; } if(GetPlayerTeam(playerid) == 2) { CreateCheckpoint(-1426.42, 478.65, 5.61, 5, 10, 0); SendClientMessage(playerid, COLOR_LIGHTBLUE, "<!>Mission: Get the truck and deliver it at the base!"); return 1; } }