Join Date: Apr 2010 Location: Caxias do Sul Posts: 5,210 Reputation: 305 | Re: ●● Códigos Úteis ●● Ah Te Amooooooo,,, Enviar Mensagem ao Player pawn Code: if(strcmp(cmd, "/ambrosio", true) == 0) //-- Comando { SendClientMessage(playerid,COR,"MENSAGEM "); //MSG SendClientMessage(playerid,COR,"MELHOR TOPICO EU AMO O AMBROSIO rs"); //MSG return 1; } Animações pawn Code: //---------------------ANIMAÇÕES--------------------------------------------- if(strcmp("/renderse", cmd, true) == 0) { SetPlayerSpecialAction(playerid, 10); return 1; } if(strcmp("/ligar", cmd, true) == 0) { SetPlayerSpecialAction(playerid, 11); return 1; } if(strcmp("/desligar", cmd, true) == 0) { SetPlayerSpecialAction(playerid, 13); return 1; } if(strcmp("/bebado", cmd, true) == 0) { ApplyAnimation(playerid, "PED", "WALK_DRUNK", 4.0, 1, 1, 1, 1, 0); return 1; } if(strcmp("/bomba", cmd, true) == 0) { ClearAnimations(playerid); ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/apontar", cmd, true) == 0) { ApplyAnimation(playerid, "ped", "ARRESTgun", 4.0, 0, 1, 1, 1, -1); return 1; } if(strcmp("/merda", cmd, true) == 0) { ApplyAnimation(playerid, "RAPPING", "Laugh_01", 4.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/mascararse", cmd, true) == 0) { ApplyAnimation(playerid, "SHOP", "ROB_Shifty", 4.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/roubar", cmd, true) == 0) { ApplyAnimation(playerid, "SHOP", "ROB_Loop_Threat", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/cruzarb", cmd, true) == 0) { ApplyAnimation(playerid, "COP_AMBIENT", "Coplook_loop", 4.0, 0, 1, 1, 1, -1); return 1; } if(strcmp("/deitar", cmd, true) == 0) { ApplyAnimation(playerid, "BEACH", "bather", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/abaixar", cmd, true) == 0) { ApplyAnimation(playerid, "ped", "cower", 3.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/vomitar", cmd, true) == 0) { ApplyAnimation(playerid, "FOOD", "EAT_Vomit_P", 3.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/comer", cmd, true) == 0) { ApplyAnimation(playerid, "FOOD", "EAT_Burger", 3.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/rap", cmd, true) == 0) { ApplyAnimation(playerid, "ON_LOOKERS", "wave_loop", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/passaramao", cmd, true) == 0) { ApplyAnimation(playerid, "SWEET", "sweet_ass_slap", 4.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/cobrar", cmd, true) == 0) { ApplyAnimation(playerid, "DEALER", "DEALER_DEAL", 4.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/overdose", cmd, true) == 0) { ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/fumar", cmd, true) == 0) { ApplyAnimation(playerid, "SMOKING", "M_smklean_loop", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/fumar2", cmd, true) == 0) { ApplyAnimation(playerid, "SMOKING", "F_smklean_loop", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/sentar", cmd, true) == 0) { ApplyAnimation(playerid, "BEACH", "ParkSit_M_loop", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/conversar", cmd, true) == 0) { ApplyAnimation(playerid, "PED", "IDLE_CHAT", 4.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/fodase", cmd, true) == 0) { ApplyAnimation(playerid, "PED", "fucku", 4.0, 0, 0, 0, 0, 0); return 1; } if(strcmp("/taichi", cmd, true) == 0) { ApplyAnimation(playerid, "PARK", "Tai_Chi_Loop", 4.0, 1, 0, 0, 0, 0); return 1; } if(strcmp("/observar", cmd, true) == 0) { ApplyAnimation(playerid, "BAR", "dnk_stndF_loop", 4.0, 1, 0, 0, 0, 0); return 1; } //---------------------Lista Animações------------------------------------ if(strcmp("/animes", cmd, true) == 0) { SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, "[DraKoN's Server]:Lista de Animes :"); SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, "/renderse /ligar /desligar /bebado /bomba /apontar /merda /mascararse"); SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, "/roubar /cruzarb /deitar /abaixar /vomitar /comer /rap /passaramao"); SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, "/cobrar /overdose /fumar /fumar2 /sentar /conversar /fodase /taichi"); SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, "/observar "); return 1; } Suicidio pawn Code: if(strcmp("/kill", cmd, true) == 0) { SetPlayerHealth(playerid, 0); SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"Voce Se Matou!"); return 1; } Reparar Carro pawn Code: //------------------------------------------------------------------------- if(strcmp("/reparar", cmd, true) == 0) { SetVehicleHealth(playerid,100); SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"Carro Reparado"); return 1; } //------------------------------------------------------------------------- Nick Off pawn Code: if (strcmp("/nickoff", cmd, true) == 0) { for(new i = 0; i < MAX_PLAYERS; i++) ShowPlayerNameTagForPlayer(playerid, i, false); GameTextForPlayer(playerid, "~W~Nicks Desativos ~R~off", 5000, 5); return 1; }Nick ON pawn Code: if (strcmp("/nickon", cmd, true) == 0) { for(new i = 0; i < MAX_PLAYERS; i++) ShowPlayerNameTagForPlayer(playerid, i, true); GameTextForPlayer(playerid, "~W~Nicks Ativos ~R~", 5000, 5); return 1; }Comando Procurar Bots pawn Code: if(strcmp(cmd, "/bots", true) == 0) { SendClientMessage(playerid,AMARELO,"[DrK] Procurando Bots..."); for(new i=0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { new ip[16]; GetPlayerIp(playerid, ip, sizeof(ip)); if(strcmp(ip, "255.255.255.255") == 0) { format(string,256,"[DrK] Bot Detectado! IP: %d",ip); SendClientMessageToAll(LARANJA,string); Kick(playerid); return 0; } } } return 1; } Defines Algumas Cores pawn Code: //*********************Cores**************************************************** #define LARANJA 0xFF8C00AA #define VERDE 0x33AA33AA #define AMARELO 0xFFFF00AA #define COLOR 0xFF0000AA #define AZUL 0x33CCFFAA #define AAZUL 0x2641FEAA Level de Procurado + Score ao Matar pawn Code: //****************************************************************************** public OnPlayerDeath(playerid, killerid, reason) { SetPlayerWantedLevel(killerid, 1); SetPlayerWantedLevel(playerid, 0); SetPlayerScore(killerid, GetPlayerScore(playerid) + 1); SetPlayerScore(playerid, GetPlayerScore(playerid) - 1); SendClientMessage(playerid,LARANJA,"Você morreu, perdeu 1 de Score, Digite /top."); SendClientMessage(killerid, AZUL, "Você matou e ganho 1 de Score, Digite /top."); } //****************************************************************************** Admins Onlines pawn Code: //-----------------------------Admins Online-------------------------- if(strcmp(cmdtext, "/admins", true) == 0){ new Jogador[24]; new count = 0; new msg[120]; new ListaAdmins[128]; for(new i=0; i<MAX_PLAYERS; i++){ if(IsPlayerConnected(i) && IsPlayerAdmin(i)){ GetPlayerName(i,Jogador,24); format(msg,sizeof(msg),"Admins Online's: %s", Jogador); SendClientMessage(playerid, 0x000FFFAA, msg); count++; } } if(count >= 0){ SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, "Admins Off"); dini_IntSet (ListaAdmins, "Admins", 1); SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, ListaAdmins); } return 1; } //------------------------------------------------------------------------------ /Favela: ir a favela pawn Code: //------------------------------------------------------------------------- if(strcmp("/favelatraficante", cmd, true) == 0) { SendClientMessage(playerid,PM_OUTGOING_COLOR ,"/favelatraficante: para entrar ao trafico"); SendClientMessage(playerid,PM_OUTGOING_COLOR ,"/favelapolicial: para entra na policia"); return 1; } if(strcmp("/favelatraficante", cmd, true) == 0) { SendClientMessage(playerid,PM_OUTGOING_COLOR ,"Bem Vindo a Favela"); SetPlayerPos(playerid,2237.6868,-1079.4060,41.6102); SetPlayerSkin(playerid, 268); ResetPlayerWeapons(0); GivePlayerWeapon(playerid, 26, 9999); GivePlayerWeapon(playerid, 24, 9999); GivePlayerWeapon(playerid, 31, 9999); GivePlayerWeapon(playerid, 32, 9999); return 1; } //------------------------------------------------------------------------- if(strcmp("/favelapolicial", cmd, true) == 0) { SendClientMessage(playerid,PM_OUTGOING_COLOR ,"Bem Vindo a Favela"); SetPlayerPos(playerid,2237.6868,-1079.4060,41.6102); SetPlayerSkin(playerid, 281); ResetPlayerWeapons(0); GivePlayerWeapon(playerid, 26, 9999); GivePlayerWeapon(playerid, 24, 9999); GivePlayerWeapon(playerid, 31, 9999); GivePlayerWeapon(playerid, 32, 9999); return 1; }Comando Idiota pawn Code: if (strcmp("/comando", cmdtext, true, 10) == 0) { SendClientMessage(playerid, 0xFF6347AA, "Eu Também Sei Criar Comandos Idiotas"); GivePlayerMoney(playerid, 1); return 1; } |
Poste seus projetos,aqui!
e Seja Feliz!
Participe do fórum, é rápido e fácil