29.10.2013, 17:47
Simples Sistema De Animes Basico.
Em Breve Mais Animes ...
PHP код:
/*
Simples Animes
Para Sua Diversгo
Criado Por Catchorro
Creditos : Catchorro
OBS : NAO RETIRE OS CREDITOS
*/
////////////////////////////////////////////////////////////////////////////////
#define FILTERSCRIPT
////////////////////////////////////////////////////////////////////////////////
#include <a_samp>
////////////////////////////////////////////////////////////////////////////////
#if defined FILTERSCRIPT
////////////////////////////////////////////////////////////////////////////////
#define Vermelho 0xFF0000AA
#define Laranja 0xFF6600AA
#define White 0xFFFFFFAA
////////////////////////////////////////////////////////////////////////////////
public OnFilterScriptInit()
{
print("Animes Criado Por Catchorro : ligado");
return 1;
}
////////////////////////////////////////////////////////////////////////////////
public OnFilterScriptExit()
{
print("Animes Criado Por Catchorro : Desligado");
return 1;
}
////////////////////////////////////////////////////////////////////////////////
public OnPlayerCommandText(playerid, cmdtext[])
{
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/handsup", cmdtext, true))
{
SetPlayerSpecialAction(playerid, 10);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/ligar", cmdtext, true))
{
SetPlayerSpecialAction(playerid, 11);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/desligar", cmdtext, true))
{
SetPlayerSpecialAction(playerid, 13);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/bebado", cmdtext, true))
{
ApplyAnimation(playerid, "PED", "WALK_DRUNK", 4.0, 1, 1, 1, 1, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/apontar", cmdtext, true))
{
ApplyAnimation(playerid, "ped", "ARRESTgun", 4.0, 0, 1, 1, 1, -1);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/mascararse", cmdtext, true))
{
ApplyAnimation(playerid, "SHOP", "ROB_Shifty", 4.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/roubar", cmdtext, true))
{
ApplyAnimation(playerid, "SHOP", "ROB_Loop_Threat", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/cruzarb", cmdtext, true))
{
ApplyAnimation(playerid, "COP_AMBIENT", "Coplook_loop", 4.0, 0, 1, 1, 1, -1);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/merda", cmdtext, true))
{
ApplyAnimation(playerid, "RAPPING", "Laugh_01", 4.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/deitar", cmdtext, true))
{
ApplyAnimation(playerid, "BEACH", "bather", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/abaixar", cmdtext, true))
{
ApplyAnimation(playerid, "ped", "cower", 3.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/vomitar", cmdtext, true))
{
ApplyAnimation(playerid, "FOOD", "EAT_Vomit_P", 3.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/comer", cmdtext, true))
{
ApplyAnimation(playerid, "FOOD", "EAT_Burger", 3.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/rap", cmdtext, true))
{
ApplyAnimation(playerid, "ON_LOOKERS", "wave_loop", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/passaramao", cmdtext, true))
{
ApplyAnimation(playerid, "SWEET", "sweet_ass_slap", 4.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/cobrar", cmdtext, true))
{
ApplyAnimation(playerid, "DEALER", "DEALER_DEAL", 4.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/overdose", cmdtext, true))
{
ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/fumar", cmdtext, true))
{
ApplyAnimation(playerid, "SMOKING", "M_smklean_loop", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/fumar2", cmdtext, true))
{
ApplyAnimation(playerid, "SMOKING", "F_smklean_loop", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/sentar", cmdtext, true))
{
ApplyAnimation(playerid, "BEACH", "ParkSit_M_loop", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/conversar", cmdtext, true))
{
ApplyAnimation(playerid, "PED", "IDLE_CHAT", 4.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/fodase", cmdtext, true))
{
ApplyAnimation(playerid, "PED", "fucku", 4.0, 0, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/taichi", cmdtext, true))
{
ApplyAnimation(playerid, "PARK", "Tai_Chi_Loop", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/observar", cmdtext, true))
{
ApplyAnimation(playerid, "BAR", "dnk_stndF_loop", 4.0, 1, 0, 0, 0, 0);
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/stopanime", cmdtext, true))
{
ClearAnimations(playerid);
SendClientMessage(playerid, Vermelho, "[Info-Server] Voce Parou a Sua Animaзгo ");
return 1;
}
////////////////////////////////////////////////////////////////////////////////
if (!strcmp("/animes", cmdtext, true))
{
SendClientMessage(playerid, Laranja, "=======================================================================================");
SendClientMessage(playerid, White, "/handsup /ligar /desligar /bebado /apontar /cobrar /mascararse /passaramao /rap /taichi");
SendClientMessage(playerid, White, "/roubar /cruzarb /deitar /abaixar /vomitar /comer /sentar /conversar /fodase /observar");
SendClientMessage(playerid, White, "/overdose /fumar /fumar2 /merda");
SendClientMessage(playerid, Laranja, "=======================================================================================");
return 1;
}
////////////////////////////////////////////////////////////////////////////////
return 0;
}
////////////////////////////////////////////////////////////////////////////////
#endif
////////////////////////////////////////////////////////////////////////////////