18.09.2017, 16:06
(
Последний раз редактировалось Cothect; 18.09.2017 в 20:18.
)
Код:
CMD:esposar(playerid,params[]) { new id; new string[256]; new string2[256]; if(gTeam[playerid] == TEAM_BLUE) return SendClientMessage(playerid,-1,"No eres Policia"); if(sscanf(params, "u", id)) return SendClientMessage(playerid, -1, "Uso correcto: /esposar [id]"); if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_ROJO, "Ese jugador no estб conectado!"); format(string, sizeof(string), "Has Esposado a %s ",NombreJugador(id)); SendClientMessage(playerid, COLOR_CELESTE, string); format(string2, sizeof(string2), "El Policia %s te espososo",NombreJugador(playerid)); SendClientMessage(id,-1,string2); ApplyAnimation(id,"SWORD","sword_block",50.0,0, 1,1,1,1); return 1; } NombreJugador(playerid) { new name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name, sizeof(name)); return name; }
Код:
CMD:esposar(playerid,params[]) { new id; new string[256]; new string2[256]; new NombreJugador1[MAX_PLAYER_NAME], NombreJugador2[MAX_PLAYER_NAME]; GetPlayerName(playerid, NombreJugador1, sizeof(NombreJugador1)); if(gTeam[playerid] == TEAM_BLUE) return SendClientMessage(playerid,-1,"No eres Policia"); if(sscanf(params, "u", id)) return SendClientMessage(playerid, -1, "Uso correcto: /esposar [id]"); if(id == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_ROJO, "Ese jugador no estб conectado!"); GetPlayerName(id, NombreJugador2, sizeof(NombreJugador2)); format(string, sizeof(string), "Has Esposado a %s ",NombreJugador2); SendClientMessage(playerid, COLOR_CELESTE, string); format(string2, sizeof(string2), "El Policia %s te espososo",NombreJugador); SendClientMessage(id,-1,string2); ApplyAnimation(id,"SWORD","sword_block",50.0,0, 1,1,1,1); return 1; }