Raised This Month: $7 Target: $400
 1% 

Support Furien Mod - Other Languages (english required)


Post New Thread Reply   
 
Thread Tools Display Modes
SpokY
Senior Member
Join Date: Feb 2009
Location: Darmstadt
Old 01-08-2011 , 09:25   Re: FURIEN.c.la Version Courante v0.4.4 (24juin2010)
Reply With Quote #21

@Solano
u mean this?
Code:
#include <amxmodx>
#include <cstrike>
new const VERSION[] = "0.0.3"
const MAX_PLAYERS = 32
public plugin_init()
{
    register_plugin("Switch Teams On Ct Wins", VERSION, "ConnorMcLeod")
    register_event("SendAudio", "Event_SendAudio_MRAD_ctwin", "a", "1=0", "2=%!MRAD_ctwin")
}
//http://wiki.amxmodx.org/Half-Life_1_Game_Events#SendAudio
public Event_SendAudio_MRAD_ctwin()
{
    new iPlayers[MAX_PLAYERS], iNum, id
    get_players(iPlayers, iNum)
    for(new i; i<iNum; i++)
    {
        id = iPlayers[i]
        switch( cs_get_user_team(id) )
        {
            case CS_TEAM_T:
            {
                cs_set_user_team(id, CS_TEAM_CT, CS_CT_GIGN)
            }
            case CS_TEAM_CT:
            {
                cs_set_user_team(id, CS_TEAM_T, CS_T_LEET)
            }
        }
    }
}
i cant test it now but i have installed it.
And thanks for the plant ;)

Edit:
plugin fail !
when i ct i a furie and when i t i a anti-furie

when i turn on the switch from the furien plugin .. after 2-3 rounds the furien dont have the bomb.. the anti-furien have the bomb lol
__________________
xtream.eSports Weil's einfach nur Geil ist !
www.xtream-esports.com

Last edited by SpokY; 01-08-2011 at 09:43.
SpokY is offline
Send a message via ICQ to SpokY Send a message via MSN to SpokY
SoLaNo22
New Member
Join Date: Jan 2011
Old 01-08-2011 , 10:31   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #22

I don't know why... In my server I locked team switch in furien.ini and TT team are Furien, and CT are Human...

I made another plugin for team change on CT win, and 4 TT wins...
If you want it tell me...

Restart your server and try again, the TT will be Furien (I think)

I corrected the WallHang, we can attack using it, if you want tell me too.

My unic problem is the parachute! :@

Best regards.

Last edited by SoLaNo22; 01-08-2011 at 10:36.
SoLaNo22 is offline
SpokY
Senior Member
Join Date: Feb 2009
Location: Darmstadt
Old 01-09-2011 , 08:15   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #23

ok this plugins works..
but when i join and go to the furie then i accept the speed settings but iam slow? after change the map new.. it works..

the parachute problem...
maybe u take an external plugin parachute for all users got parachute (gravity not lost @ furie) ur disable it compleat^^
__________________
xtream.eSports Weil's einfach nur Geil ist !
www.xtream-esports.com
SpokY is offline
Send a message via ICQ to SpokY Send a message via MSN to SpokY
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 01-09-2011 , 08:22   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #24

Gonna fix gravity when i have time.
About speed, check all server .cfg file if there is not place where sv_maxspeed is reset to 320 for example.
__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline
STr!ker
Senior Member
Join Date: Jun 2009
Location: Germany
Old 01-16-2011 , 08:05   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #25

Can you add somethink, when the bomb exploade, no one will killed? So they can keep their shop applications.
And how i can set the parachute for everyone, so they donīt need to buy?

I have tried to make a "Weapon Menu" for only the Ctīs:

PHP Code:
 #include <amxmodx>
 #include <cstrike>
 #include <fun>
 
 #define PLUGINNAME    "WeaponsforCT"
#define VERSION        "0.1b"
#define AUTHOR        "STrike"

 
public plugin_init()
 {
    
register_plugin(PLUGINNAMEVERSIONAUTHOR)
    
register_event"ResetHUD""Event_ResetHUD""be" );
    
register_clcmd"AntiFurien WaffenMenu","WeaponMenuforCt");
 }
public 
reset_hud(id)
{
if(
is_user_alive(id) && cs_get_user_team(id) ==CS_TEAM_CT)
{
WeaponMenuforCt(id)
}
}
 public 
WeaponMenuforCt(id)
 {
    new 
menu menu_create("\rAntiFurien WaffenMenu:""menu_handler");
   
    
menu_additem(menu"\wak47 + Deagle""1"0);
    
menu_additem(menu"\wM4A1 + Deagle""2"0);
    
menu_additem(menu"\wMP5 Navy + Deagle""3"0);
    
menu_additem(menu"\wXM1014  + Deagle""4"0); 
    
menu_additem(menu"\wM3  + Deagle""5"0);
    
    
menu_setprop(menuMPROP_EXITMEXIT_ALL);
   
    
menu_display(idmenu0);
 
 }
 public 
menu_handler(idmenuitem)
{
    if( 
item == MENU_EXIT )
    {
        
menu_destroy(menu);
        return 
PLUGIN_HANDLED;
    }
    new 
data[6], iName[64];
    new 
accesscallback;
    
menu_item_getinfo(menuitemaccessdata,5iName63callback);
    new 
key str_to_num(data);
 
    switch(
key)
    {
        case 
1:
        {
    
give_item(id"weapon_ak47")
    
give_item(id"weapon_deagle")
    
cs_set_user_bpammo(id,CSW_AK47,90)  
    
cs_set_user_bpammo(id,CSW_DEAGLE,35
        }
        case 
2:
        {
    
give_item(id"weapon_m4a1")
    
give_item(id"weapon_deagle")
    
cs_set_user_bpammo(id,CSW_M4A1,90)  
   
cs_set_user_bpammo(id,CSW_DEAGLE,35
        }
        case 
3
        {
    
give_item(id"weapon_mp5navy")
    
give_item(id"weapon_deagle")
    
cs_set_user_bpammo(id,CSW_MP5NAVY,120)  
    
cs_set_user_bpammo(id,CSW_DEAGLE,35
       }
case 
4
        {
    
give_item(id"weapon_xm1014")
    
give_item(id"weapon_deagle")
        
cs_set_user_bpammo(id,CSW_XM1014,32)  
       
cs_set_user_bpammo(id,CSW_DEAGLE,35
        }
case 
5
        {
    
give_item(id"weapon_m3")
    
give_item(id"weapon_deagle")
        
cs_set_user_bpammo(id,CSW_M3,32)  
       
cs_set_user_bpammo(id,CSW_DEAGLE,35
        }
    }

    
menu_destroy(menu);
    return 
PLUGIN_HANDLED;
 } 
It donīt work. Can you fix it?

Last edited by STr!ker; 01-16-2011 at 08:09.
STr!ker is offline
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 01-16-2011 , 08:35   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #26

I won't fix your plugin, default furiens plugins already allow to automatically give weapons you want.
__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline
STr!ker
Senior Member
Join Date: Jun 2009
Location: Germany
Old 01-16-2011 , 14:23   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #27

But not to choose their weapons! They give just 3 weapons at once...

Another Problem is, that the Antifuriers see the nickname in hud.
STr!ker is offline
Kidev
Veteran Member
Join Date: Jun 2010
Location: France
Old 01-16-2011 , 17:33   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #28

Code:
mp_playerid 2
;)
__________________
Kidev is offline
STr!ker
Senior Member
Join Date: Jun 2009
Location: Germany
Old 01-22-2011 , 12:11   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #29

Hey.... One requirement:

How i can set, that no one will block anyone?

I have tested this, but it donīt work:
http://forums.alliedmods.net/showpos...2&postcount=70

One other thing, that i have blocked the name (mp_playerid 2)
And in one server, i have see, that I can see the names of the team ct, but not of the team T...

Here an Pic:
STr!ker is offline
gtpunkt
Veteran Member
Join Date: Dec 2008
Location: Berlin
Old 01-30-2011 , 11:00   Re: Support Furien Mod - Other Languages (english required)
Reply With Quote #30

your furiens.amxx dont work
i run it on a cs server,im not sure if it just for cz?

error
: [AMXX] Plugin "furiens.amxx" failed to load: Plugin uses an unknown function (name "unregister_message") - check your modules.ini.

PHP Code:
Currently running plugins:
 [  
1AMX Mod Xv1.8.1.3711Apr 19 2008by AMX Mod X Dev Teamsee http://www.amxmodx.org
 
[  2Funv1.8.1.3710Apr 19 2008by AMX Mod X Dev Teamsee http://www.amxmodx.org
 
[  3CStrikev1.8.1.3710Apr 19 2008by AMX Mod X Dev Teamsee http://www.amxmodx.org
 
[  4CSXv1.8.1.3710Apr 19 2008by AMX Mod X Dev Teamsee http://www.amxmodx.org/
 
[  5Enginev1.8.1.3710Apr 19 2008by AMX Mod X Dev Teamsee http://www.amxmodx.org
 
[  6FakeMetav1.8.1.3711Apr 19 2008by AMX Mod X Dev Teamsee http://www.amxmodx.org
 
[  7Ham Sandwichv1.8.1.3710Apr 19 2008by AMX Mod X Dev Teamsee http://www.amxmodx.org
7 plugins 
gtpunkt is offline
Send a message via Skype™ to gtpunkt
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 00:09.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode