Raised This Month: $ Target: $400
 0% 

Furien V64 (64.2.6b - 27.08.2013)


Post New Thread Reply   
 
Thread Tools Display Modes
Blizzard_87
Veteran Member
Join Date: Oct 2012
Old 08-24-2013 , 19:42   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #11

only thing i can suggest to use less code is you have deagle as secondary in all options in weapon menu... not need to add them into const here
Code:
new const g_mCTWeapons[CT_WEAPON_MAX][GunItems] = {     {"AK47 + Deagle",   "weapon_ak47",      CSW_AK47,       "weapon_deagle",    CSW_DEAGLE, "_"},     {"M4A1 + Deagle",   "weapon_m4a1",      CSW_M4A1,       "weapon_deagle",    CSW_DEAGLE, "_"},     {"Famas + Deagle",  "weapon_famas",     CSW_FAMAS,      "weapon_deagle",    CSW_DEAGLE, "_"},     {"MP5 + Deagle",    "weapon_mp5navy",   CSW_MP5NAVY,        "weapon_deagle",    CSW_DEAGLE, "_"},     {"XM1014 + Deagle",     "weapon_xm1014",    CSW_XM1014,     "weapon_deagle",    CSW_DEAGLE, "_"} }

just simply give them a deagle with what ever primary they choose...
like this?
Code:
public func_OpenGunMenu_handler(id, menu, item) {     if(cs_get_user_team(id) != CS_TEAM_CT || !is_user_alive(id))     {         menu_destroy(menu)         return PLUGIN_HANDLED     }         give_item(id, g_mCTWeapons[item][ItemPri])     cs_set_user_bpammo(id, g_mCTWeapons[item][ItemPriConst], get_pcvar_num(cvar_ct_ammo_pri))         give_item(id, "weapon_deagle")     cs_set_user_bpammo(id, CSW_DEAGLE, get_pcvar_num(cvar_ct_ammo_sec))         g_bHasWeapon[id] = true     return PLUGIN_HANDLED }
then you wont have to declare them in the enum and const?... just idea..

either way works

my 2 cents have a nice day
__________________

Last edited by Blizzard_87; 08-24-2013 at 19:47.
Blizzard_87 is offline
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-25-2013 , 02:19   AW: Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #12

Quote:
Originally Posted by NaimB77 View Post
Awesome, I love how evrything is good sorted.

Good Job !

#Deagle
Thanks





Quote:
Originally Posted by PepsiSexy View Post
Hey, kia, can you add some more items maybe

You can add them yourself, see FAQ.




Quote:
Originally Posted by ^SmileY View Post
Sorry for question, what is a Furien mod?
At Furien Mod the Ts are fast and have low gravity. When they stand still with knife they're invisible. The CTs get weapons and have to kill the CTs. When the CTs win, teams will be swapped.

@Blizzard : I want people to be able to edit this, I just made everywhere deagle, because it is my personal standard.
__________________
Kia is offline
Mirk
Senior Member
Join Date: Nov 2012
Old 08-25-2013 , 04:59   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #13

GOOD WORK!
Mirk is offline
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-25-2013 , 05:33   Re: Furien V64 (64.1.4b - 24.08.2013)
Reply With Quote #14

THANKS!

Looks like CSO has same Idea http://cso.wikia.com/wiki/Stealth
__________________

Last edited by Kia; 08-25-2013 at 05:43.
Kia is offline
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-25-2013 , 07:30   Re: Furien V64 (64.1.5b - 24.08.2013)
Reply With Quote #15

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

Updated to 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.

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

Last edited by Kia; 08-25-2013 at 08:18.
Kia is offline
Kz1.0
Senior Member
Join Date: Jan 2013
Location: Vietnam
Old 08-25-2013 , 09:03   Re: Furien V64 (64.2.0b - 24.08.2013)
Reply With Quote #16

Maybe stupid but can you add some description about Furien Mod ? I don't know what it is XD

Last edited by Kz1.0; 08-25-2013 at 09:03.
Kz1.0 is offline
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-25-2013 , 09:36   Re: Furien V64 (64.2.0b - 24.08.2013)
Reply With Quote #17

See Post #12, I'll add it to first post later.

Updated to 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.
__________________

Last edited by Kia; 08-25-2013 at 13:08.
Kia is offline
HalfLife
Senior Member
Join Date: Aug 2013
Location: I'll tell you later ;)
Old 08-26-2013 , 01:11   Re: Furien V64 (64.2.3b - 24.08.2013)
Reply With Quote #18

Good Job I love this Mod Gonna add it to my MultiMod Server
__________________
If you need any help regarding your HL Server, PM me and I can help you
My Tutorials:
How to install and use your SQL Database using AMX Mod X Plugins
HalfLife is offline
mottzi
Veteran Member
Join Date: May 2010
Location: Switzerland
Old 08-26-2013 , 03:05   Re: Furien V64 (64.2.3b - 24.08.2013)
Reply With Quote #19

Clean code

Maybe a little suggestion:

PHP Code:
    set_user_health(idget_user_health(id) + 50)
    if(
get_user_health(id) > MAX_HP)
        
set_user_health(idMAX_HP

PHP Code:
set_user_health(idmin(get_user_health(id), MAX_HP)) 
mottzi is offline
Send a message via MSN to mottzi
Kia
AlliedModders Donor
Join Date: Apr 2010
Location: In a world of madness
Old 08-26-2013 , 03:27   Re: Furien V64 (64.2.3b - 24.08.2013)
Reply With Quote #20

Quote:
Originally Posted by mottzi View Post
Clean code

Maybe a little suggestion:

PHP Code:
    set_user_health(idget_user_health(id) + 50)
    if(
get_user_health(id) > MAX_HP)
        
set_user_health(idMAX_HP

PHP Code:
set_user_health(idmin(get_user_health(id), MAX_HP)) 
Will be edited, thanks.
__________________
Kia is offline
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 19:55.


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