Raised This Month: $32 Target: $400
 8% 

Furien V64 (64.2.6b - 27.08.2013)


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   Counter-Strike        Category:   Gameplay       
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-24-2013 , 10:28   Furien V64 (64.2.6b - 27.08.2013)
Reply With Quote #1




.: Official Test Server :.
Connect to 109.230.231.158:27017
Steam is required!

.: Description :.
This is Version 64 of my Furien Mod, I released my old code a while ago, but I decided to rewrite the entire plugin. As a Furie you are very fast and you're invisible when you stand still with a knife. The CTs get weapons and have to kill the furien to swap the teams.

.: Requirements :.
  • A Steam Server

.: Commands :.
  • (say(_team) (/))guns : Opens the Gunmenu if closed and you got no weapons as CT.
  • (say(_team) (/))gravity : Toggles if you have Low-Gravity as T or not.
  • (say(_team) (/))shop : Opens the Shop.

.: CVars :.
  • kfm_godend (Default : 1) - If enabled, all players will be given godmode at the round end to prevent team kills.
  • kfm_savehp (Default : 1) - If enabled, the players health will be saved at round end and regiven at round begin.
  • kfm_t_starthe (Default : 1) - Sets how many HE Grenades a furie gets when he spawns.
  • kfm_t_startflash (Default : 2) - Sets how many Flash Grenades a furie gets when he spawns.
  • kfm_t_startsmoke (Default : 1) - Sets how many Smoke Grenades a furie gets when he spawns.
  • kfm_t_grav (Default : 0.39) - Sets the Gravity for Furien in Percent (39 % by default).
  • kfm_t_speed (Default : 565) - Sets the Speed for Furien.
  • kfm_t_fs (Default : 1) - If > 0 it disables footsteps for Furien.
  • kfm_t_psf (Default : 1) - If > 0 it enables "Pain Shock Free" for Furien (No Slowdown after being shot).
  • kfm_ct_starthe (Default : 0) - Sets how many HE Grenades a CT gets when he spawns.
  • kfm_ct_startflash (Default : 0) - Sets how many Flash Grenades a CT gets when he spawns.
  • kfm_ct_startsmoke (Default : 1) - Sets how many Smoke Grenades a CT gets when he spawns.
  • kfm_ct_grav (Default : 1.0) - Sets the Gravity for CT in Percent (100 % by default).
  • kfm_ct_fs (Default : 0) - If > 0 it disables footsteps for CTs.
  • kfm_ct_ammo_primary (Default : 200) - Sets how much BP Ammo CTs get for their primary weapon.
  • kfm_ct_ammo_secondary (Default : 150) - Sets how much BP Ammo CTs get for their secondary weapon.

.: Changelog :.

Version 64.2.6b
  • Updated Menu Title for changing Speed to be more descriptive.



Version 64.2.5b
  • Optimized Code (thanks to mottzi)

Version 64.2.4b
  • Fixed Superknife Damage Bug
  • Added option to save Health after Round
  • Added define for maximum Health
  • Removed Superknife and No Flash from Reset List, will be removed at Death.

Version 64.2.0b
  • Fixed Superknife being removed too early.
  • Fixed No Flash being removed too early.

Version 64.1.8b
  • Removed Access Flags for Items and Guns
  • Fixed Bug where Furien started without Low Gravity
  • Fixed Bug where Furien started without fast speed.

Version 64.1.5b
  • Added alive Checks to prevent dead players to buy items.

.: Bugs :.
  • None found yet, if you find one, please report it.

.: Credits :.
  • Exolent - For his Team Swap Code
  • ConnorMcLeod - Original Furien Mod
  • Blizzard - For this Menu Style which saved a lot of time and code.
  • Deagle` - Testing Plugin :*

.: Recommended Plugins :.
  • LookAt

    With this plugin you can get some information from your teammates and Furien get these informations from CTs.


    PHP Code:
    /* Plugin generated by AMXX-Studio */

    #include <amxmodx>
    #include <amxmisc>
    #include <fun>
    #include <cstrike>
    #include <fakemeta>

    #define PLUGIN "LookAt"
    #define VERSION "1.0"
    #define AUTHOR "Kia"

    public plugin_init() 
    {
        
    register_plugin(PLUGINVERSIONAUTHOR)
        
        
    /* Forwards */
        
        
    register_forward(FM_PlayerPreThink"FM_PreThink")
    }

    // ===============================================================================
    //     Forwards - PreThink
    // ===============================================================================

    public FM_PreThink(id)
    {
        new 
    idAimingiBodyPart
        get_user_aiming
    (ididAimingiBodyPart)
        
        if(
    is_user_alive(idAiming) && is_user_alive(id)) 
        {
            if(
    cs_get_user_team(id) == cs_get_user_team(idAiming))
            {
                new 
    message[200], szTarget[33], HPmoneyap
                get_user_name
    (idAimingszTargetcharsmax(szTarget))
                
    HP get_user_health(idAiming)
                
    money cs_get_user_money(idAiming)
                
    ap get_user_armor(idAiming)
                
    set_hudmessage(2552552550.450.4500.10.10.10.14);
                
    format(message199"Name: %s^nHP: %i^nAP: %i^nMoney: %i"szTargetHPapmoney)
                
    show_hudmessage(idmessage)
            }
            else if(
    cs_get_user_team(id) == CS_TEAM_T && cs_get_user_team(idAiming) == CS_TEAM_CT)
            {
                new 
    message[200], szTarget[33], HPmoneyap
                get_user_name
    (idAimingszTargetcharsmax(szTarget))
                
    HP get_user_health(idAiming)
                
    money cs_get_user_money(idAiming)
                
    ap get_user_armor(idAiming)
                
    set_hudmessage(2552552550.450.4500.10.10.10.14)
                
    format(message199"Name: %s^nHP: %i^nAP: %i^nMoney: %i"szTargetHP,apmoney)
                
    show_hudmessage(idmessage)
            }    
        }
        return 
    PLUGIN_HANDLED

  • No Grenades at C4
  • Furien Anti-Camp

.: FAQ :.

Q : How do I add items to the Shop?
A : First you increase the maximum amount of items in the shop. (Using a Item for Furien in this example.)



Then you go to the constants Section and add your item there.



Quote:
Format : "Itemname", COST, "CORE / Pluginname", "Function", "Maximum", "Reset, "Access" ("_" = Item for All)
// 0 : No Reset ; 1 : Round Reset ; 2 : Death Reset
Example :



So, now I've added an item called "My new Item" which costs $1000 and is in my_plugin.amxx in the function "func_givenewitem" and you can buy it only once until you die. And the item is only available for players with the access ADMIN_BAN.

Attached Files
File Type: sma Get Plugin or Get Source (kfm_extra_sdgl.sma - 3346 views - 5.6 KB)
File Type: zip kfm_resources.zip (684.0 KB, 2907 views)
File Type: sma Get Plugin or Get Source (furien_v64.sma - 4242 views - 26.9 KB)
__________________

Last edited by Kia; 08-27-2013 at 13:58.
Kia is offline
BLacking98
Veteran Member
Join Date: Oct 2012
Location: California
Old 08-24-2013 , 10:44   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #2


Gonna try it out and let you know if I find bugs or somtg ^^

EDIT: This is Furien Gun or just normal Furien? Because I can pick up guns and just wanted to know if it's normal or a bug
__________________

Last edited by BLacking98; 08-24-2013 at 10:51.
BLacking98 is offline
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-24-2013 , 11:05   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #3

This is normal furien. Is your Server up-to-date? I just tried it, and Furiens couldn't pick up guns.
__________________
Kia is offline
sami_spt
Veteran Member
Join Date: Sep 2012
Location: I<3 pussy cats
Old 08-24-2013 , 12:03   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #4

great work!!!
sami_spt is offline
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-24-2013 , 12:13   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #5

Thanks.
__________________
Kia is offline
ironskillz1
AlliedModders Donor
Join Date: Jul 2012
Location: Sweden
Old 08-24-2013 , 12:58   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #6

Good job

Maybe i will start a server with this mod on
__________________
I have many private and unique plugins for Jailbreak and Hide'N'Seek. PM me for more info.

Pm me.

Check out my roulette site.
ironskillz1 is offline
Send a message via Skype™ to ironskillz1
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-24-2013 , 13:01   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #7

Thank you.
__________________
Kia is offline
NaimB77
Member
Join Date: Aug 2012
Old 08-24-2013 , 16:07   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #8

Awesome, I love how evrything is good sorted.

Good Job !

#Deagle
NaimB77 is offline
PepsiSexy
Member
Join Date: Aug 2013
Old 08-24-2013 , 18:59   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #9

Hey, kia, can you add some more items maybe
PepsiSexy is offline
^SmileY
Veteran Member
Join Date: Jan 2010
Location: Brazil [<o>]
Old 08-24-2013 , 19:11   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #10

Sorry for question, what is a Furien mod?
__________________
Projects:

- See my Git Hub: https://github.com/SmileYzn
PHP Code:
set_pcvar_num(pCvar, !get_pcvar_num(pCvar)); 
^SmileY is offline
Send a message via MSN to ^SmileY Send a message via Skype™ to ^SmileY
Reply



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 11:58.


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