13.02.2014, 17:43
Sim isso Eu Sei mas Por exemplo Como Irei Criar o comando /darpresentes etc.. Poder ser assim ?
Код:
if(strcmp(cmd, "/darpresentes", true) == 0) { GetPlayerName(playerid, nome, sizeof(nome)); if(PresentesON == false) { if(IsPlayerAdmin(playerid)) { format(str, sizeof(str), "{FF0000}O Admin {0000FF} %s {FF0000} soltou os presentes pela cidade, corram!", nome); MsgAll(-1, str); PresentesON = true; PresentesS = 5; new Random1 = random(sizeof(PosP1)); new Random2 = random(sizeof(PosP2)); new Random3 = random(sizeof(PosP3)); new Random4 = random(sizeof(PosP4)); new Random5 = random(sizeof(PosP5)); Presentes[0] = CreateObject(19341, PosP1[Random1][0], PosP1[Random1][1], PosP1[Random1][2], 0.0, 0.0, 0.0); Presentes[1] = CreateObject(19342, PosP2[Random2][0], PosP2[Random2][1], PosP2[Random2][2], 0.0, 0.0, 0.0); Presentes[2] = CreateObject(19343, PosP3[Random3][0], PosP3[Random3][1], PosP3[Random3][2], 0.0, 0.0, 0.0); Presentes[3] = CreateObject(19344, PosP4[Random4][0], PosP4[Random4][1], PosP4[Random4][2], 0.0, 0.0, 0.0); Presentes[4] = CreateObject(19345, PosP5[Random5][0], PosP5[Random5][1], PosP5[Random5][2], 0.0, 0.0, 0.0); Presente1 = false; Presente2 = false; Presente3 = false; Presente4 = false; Presente5 = false; } else { Msg(playerid, -1, "[FaiL] Vocк nгo й Admin!"); } } else { Msg(playerid, -1, "[FaiL]Jб foram soltados os presentes, aguardem todos acabarem"); } return 1; }