User
Pass
2FA
 
 

[rezolvat][Cerere plugin meniu de arme paintball]

 
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 -> CS 2006-2019 (Archived) -> Plugins - Help / Support
Author Message2186
BoGdanCoFcd

[Doar Dinamo]



Status: Offline
(since 24-09-2019 18:10)
Joined: 28 Jul 2014
Posts: 3969, Topics: 775
Location: Poarta Alba

Reputation: 311.9
Votes: 1145

   
Post Posted: 13-09-2014, 07:32:43 | Translate post to: ... (Click for more languages)

Dupa cum spune si titlul as dori si eu un plugin cu meniu de arme.
La fiecare inceput de runda sa apara acel meniu
Daca aveti lasati si modelele

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
-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

Post Posted: 13-09-2014, 09:24:10 | Translate post to: ... (Click for more languages)

Incearca pluginul asta(click.)



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

[Doar Dinamo]



Status: Offline
(since 24-09-2019 18:10)
Joined: 28 Jul 2014
Posts: 3969, Topics: 775
Location: Poarta Alba

Reputation: 311.9
Votes: 1145

   
Post Posted: 13-09-2014, 11:49:52 | Translate post to: ... (Click for more languages)

Nu merge...il aveam deja in addon
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
lemonEZAH

[Licensed to kill]



Status: Offline
(since 04-11-2019 15:30)
Joined: 28 Dec 2013
Posts: 7058, Topics: 351
Location: England

Reputation: 99.3
Votes: 483

Post Posted: 13-09-2014, 12:00:43 | Translate post to: ... (Click for more languages)

Ce arme vrei sa contina?
0 0
  
Back to top
View user's profile Send private message
BoGdanCoFcd

[Doar Dinamo]



Status: Offline
(since 24-09-2019 18:10)
Joined: 28 Jul 2014
Posts: 3969, Topics: 775
Location: Poarta Alba

Reputation: 311.9
Votes: 1145

   
Post Posted: 13-09-2014, 12:11:34 | Translate post to: ... (Click for more languages)

As vrea sa contina m4a1 si inca 3-4 care le ai ... Nu sunt pretentios
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
lemonEZAH

[Licensed to kill]



Status: Offline
(since 04-11-2019 15:30)
Joined: 28 Dec 2013
Posts: 7058, Topics: 351
Location: England

Reputation: 99.3
Votes: 483

Post Posted: 13-09-2014, 13:42:05 | Translate post to: ... (Click for more languages)

Quote:
#include < amxmodx >
#include < cstrike >
#include < fun >
#include < hamsandwich >

new const PLUGIN_N [ ] = " PointBall SWM ";
new const PLUGIN_V [ ] = " 1.0 ";
new const PLUGIN_A [ ] = " starkxstzzy ";

new const g_szPrefix [ ] = "PointBall";

new bool: g_bUsed [ 33 ] = false;

public plugin_init ( )
{
register_plugin ( PLUGIN_N, PLUGIN_V, PLUGIN_A );

register_event ( "HLTV", "Event_HLTV", "a", "1=0", "2=0" );

RegisterHam ( Ham_Spawn, "player", "Ham_Spawn_Post", 1 );
}
public Event_HLTV ( )
{
new iPlayers [ 32 ];
new iPlayersNum;
new i;

get_players ( iPlayers, iPlayersNum );

for ( i = 0; i < iPlayersNum; i ++ )
{
g_bUsed [ iPlayers [ i ] ] = false;
}
}
public Ham_Spawn_Post ( id )
{
if ( !is_user_connected ( id ) || !is_user_alive ( id ) || g_bUsed [ id ] )
{
return PLUGIN_CONTINUE;
}

set_task ( 0.1, "Weapon_Menu", id );

return PLUGIN_CONTINUE;
}
public Weapon_Menu ( id )
{
if ( !is_user_connected ( id ) || !is_user_alive ( id ) )
{
return PLUGIN_HANDLED;
}

new menu = menu_create ( "Alege arma:", "Weapon_Menu_Handler" );

menu_additem ( menu, "AK47", "", ADMIN_ALL );
menu_additem ( menu, "M4A1", "", ADMIN_ALL );
menu_additem ( menu, "Famas", "", ADMIN_ALL );
menu_additem ( menu, "Deagle", "", ADMIN_ALL );
menu_additem ( menu, "HE", "", ADMIN_ALL );

menu_setprop ( menu, MPROP_NUMBER_COLOR, "\y" );
menu_setprop ( menu, MPROP_EXITNAME, "Iesire" );
menu_display ( id, menu, 0 );

return PLUGIN_HANDLED;
}
public Weapon_Menu_Handler ( id, menu, item )
{
if ( item == MENU_EXIT )
{
menu_destroy ( menu );

return PLUGIN_HANDLED;
}

if ( !is_user_alive ( id ) )
{
client_print ( id, print_chat, "[ %s ] Trebuie sa fii in viata.", g_szPrefix );

return PLUGIN_HANDLED;
}

if ( g_bUsed [ id ] )
{
client_print ( id, print_chat, "[ %s ] Ai mai ales arme din meniu, asteapta runda urmatoare.", g_szPrefix );

return PLUGIN_HANDLED;
}

switch ( item )
{
case 0:
{
give_item ( id, "weapon_ak47" );
cs_set_user_bpammo ( id, CSW_AK47, 90 );

client_print ( id, print_chat, "[ %s ] Ai ales AK47 !", g_szPrefix );
}
case 1:
{
give_item ( id, "weapon_m4a1" );
cs_set_user_bpammo ( id, CSW_M4A1, 90 );

client_print ( id, print_chat, "[ %s ] Ai ales M4A1 !", g_szPrefix );
}
case 2:
{
give_item ( id, "weapon_famas" );
cs_set_user_bpammo ( id, CSW_FAMAS, 90 );

client_print ( id, print_chat, "[ %s ] Ai ales Famas !", g_szPrefix );
}
case 3:
{
give_item ( id, "weapon_deagle" );
cs_set_user_bpammo ( id, CSW_DEAGLE, 35 );

client_print ( id, print_chat, "[ %s ] Ai ales Deagle !", g_szPrefix );
}
case 4:
{
give_item ( id, "weapon_hegrenade" );

client_print ( id, print_chat, "[ %s ] Ai ales HE grenade !", g_szPrefix );
}
}

g_bUsed [ id ] = true;

menu_destroy ( menu );

return PLUGIN_HANDLED;
}

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

[Doar Dinamo]



Status: Offline
(since 24-09-2019 18:10)
Joined: 28 Jul 2014
Posts: 3969, Topics: 775
Location: Poarta Alba

Reputation: 311.9
Votes: 1145

   
Post Posted: 13-09-2014, 13:50:11 | Translate post to: ... (Click for more languages)

Lasa modelele si amxx
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
lemonEZAH

[Licensed to kill]



Status: Offline
(since 04-11-2019 15:30)
Joined: 28 Dec 2013
Posts: 7058, Topics: 351
Location: England

Reputation: 99.3
Votes: 483

Post Posted: 13-09-2014, 13:54:36 | Translate post to: ... (Click for more languages)

Nu necesita modele.
Ai aici(click) si .amxx

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

  Topic locked


Topic is closed, you cannot post any messages in it anymore

Locked by EDUTz, 24 September 2014 07:01



 
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 -> CS 2006-2019 (Archived) -> Plugins - Help / Support  


The time now is 24-07-2025, 18:31:56
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password