Raised This Month: $51 Target: $400
 12% 

[CS:GO] VIP Mode - GO:VIP


Post New Thread Reply   
 
Thread Tools Display Modes
Author
API
Veteran Member
Join Date: May 2006
Plugin ID:
3059
Plugin Version:
0.1
Plugin Category:
Gameplay
Plugin Game:
Counter-Strike: GO
Plugin Dependencies:
    Servers with this Plugin:
     
    Plugin Description:
    Brings the VIP mode to CS:GO!
    Old 07-02-2012 , 03:50   [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #1

    Hey guys,

    In the spirit of the CS:GO beta, I decided to develop something. Now before I get to the good stuff, I know what you're going to say: KyleS already has a VIP mod! And it's got more bells and whistles than this one! This plugin is meant specifically for CS:GO, NOT for CSS (though it would probably work in CS:S as well, I'd recommend using KyleS's version in this case)

    Here it goes...

    OVERVIEW
    GO:VIP is a simple VIP mode. At the beginning of each round, a random Counter-Terrorist will become the VIP. It is up to the rest of the Counter-Terrorists to escort the VIP safely to one of the rescue zones on the map. It is up to the Terrorists to kill the VIP before he is able to escape. The VIP is equipped with only a pistol with limited ammo and a knife.

    REQUIREMENTS
    - SDK Hooks (CS:GO Build): http://users.alliedmods.net/~psychon.../sdkhooks/2.2/

    CONFIGURATION
    Each map may have multiple rescue zones. There are two ways to add rescue zones to maps.

    SIMPLE METHOD:
    1. Create a file with the following contents at addons/sourcemod/configs/rescue_zones.cfg:
    Code:
    "RescueZones"
    {
    	"de_dust"
    	{
    		"Rescue Zone"
    		{
    			"coords" "-1791.968750 3521.518555 65.151741"
    		}
    		
    	}
    	"cs_italy"
    	{
    		"Rescue Zone"
    		{
    			"coords" "859.654541 2377.340332 192.093811"
                            "radius" "250"
    		}
    	}
    }
    Use the console command getpos at any time when in game to get the coords of where you are currently standing.

    HARDER METHOD
    If you are actually building the map yourself, you can tie a "trigger" brush entity to trigger_multiple and prefix it's name with "vip_rescue_zone" (ex: vip_rescue_zone, vip_rescue_zone_1, or vip_rescue_zone_a all will work)
    This method is tougher but allows for more precision with the bounding box.

    VARIABLES
    govip_min_ct (default: 2) - Minimum number of CTs to play GOVIP
    govip_min_t (default: 1) - Minimum number of Ts to play GOVIP
    govip_weapon (default: weapon_p250) - Weapon given to VIP

    INSTALLATION
    0. Install required extension: http://users.alliedmods.net/~psychon.../sdkhooks/2.2/
    1. Copy govip.smx into addons/sourcemod/plugins.
    2. Optional but recommended, copy rescue_zones.cfg int addons/sourcemod/configs and tweak it to add additional map support.
    3. Restart your server.

    KNOWN ISSUES (halp!)
    1. Currently, CS_SetTeamScore() isn't working.
    2. Sometimes bots ignore weapon restriction hook.
    3. Money isn't being awarded to the winning team.

    TODO LIST
    1. Right now it's kinda hard to spot your target. We need a specific (ideally custom) model for the VIP.
    2. Maps, maps, maps. I'll try to port some CS:S versions (using BSPZIP I should be able to embed all the textures, sounds, etc)
    3. More default rescue zones for the configuration.

    TEST SERVER
    Temporarily being used for testing PUG plugin

    CREDITS
    KyleS - His CS:S VIP plugin.
    psychonic - Awesome SDK Hooks support!
    SM Devs - Quick CS:GO support!
    Dr!fter - Helpful as always.
    Attached Files
    File Type: cfg rescue_zones.cfg (219 Bytes, 3957 views)
    File Type: smx govip.smx (9.0 KB, 3133 views)
    File Type: sp Get Plugin or Get Source (govip.sp - 3080 views - 10.0 KB)
    __________________

    Last edited by psychonic; 08-10-2012 at 00:24. Reason: set "game" to new csgo category
    API is offline
    Send a message via AIM to API
    away000
    Veteran Member
    Join Date: Sep 2010
    Old 07-02-2012 , 06:10   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #2

    Great job man, i'm happy to see u guys are developing things to csgo, continue with this good job, if need some ideas for things for CSGO talk to me, i'm full of ideas ^^
    __________________
    away000 is offline
    RedSword
    SourceMod Plugin Approver
    Join Date: Mar 2006
    Location: Quebec, Canada
    Old 07-02-2012 , 10:49   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #3

    Quote:
    TEST SERVER
    198.144.184.161:27015
    Seems down.

    Quote:
    Currently, CS_SetTeamScore() isn't working.
    I think you could do a GetFeatureStatus() while waiting for the function to be released in SM 1.5 (did you mean it wasn't in 1.4.3/.4 ?). Otherwise, You could always change score on round start and round end using SetTeamScore().

    Red
    __________________
    My plugins :
    Red Maze
    Afk Bomb
    RAWR (per player/rounds Awp Restrict.)
    Kill Assist
    Be Medic

    You can also Donate if you appreciate my work
    RedSword is offline
    Dr!fter
    The Salt Boss
    Join Date: Mar 2007
    Old 07-02-2012 , 11:20   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #4

    Quote:
    Originally Posted by RedSword View Post
    Seems down.



    I think you could do a GetFeatureStatus() while waiting for the function to be released in SM 1.5 (did you mean it wasn't in 1.4.3/.4 ?). Otherwise, You could always change score on round start and round end using SetTeamScore().

    Red
    CS:GO only works on SM 1.5 and after testing CS_SetTeamScore it works fine. If CS_GetTeamScore works set should work as well.
    Dr!fter is offline
    RedSword
    SourceMod Plugin Approver
    Join Date: Mar 2006
    Location: Quebec, Canada
    Old 07-02-2012 , 11:26   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #5

    Quote:
    Originally Posted by Dr!fter View Post
    CS:GO only works on SM 1.5
    I forgot :$. Woops.
    __________________
    My plugins :
    Red Maze
    Afk Bomb
    RAWR (per player/rounds Awp Restrict.)
    Kill Assist
    Be Medic

    You can also Donate if you appreciate my work
    RedSword is offline
    API
    Veteran Member
    Join Date: May 2006
    Old 07-02-2012 , 14:20   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #6

    Test server is back up. Not sure why it's going down yet, investigating.
    __________________
    API is offline
    Send a message via AIM to API
    API
    Veteran Member
    Join Date: May 2006
    Old 07-02-2012 , 22:55   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #7

    Okay I learned my lesson, make sure to run srcds in a screen when using Linux so it doesn't shut down when your SSH connection dies!
    The test server should remain up until a real crash occurs, let me know if you experience any issues.
    __________________
    API is offline
    Send a message via AIM to API
    natino
    Member
    Join Date: Aug 2011
    Old 07-12-2012 , 02:34   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #8

    lookin good needs more work though. The custom player model for vip is needed. Bots need to player smarter with the VIP maybe add cvar for bots to follow him/vip always??? And add a on/off cvar for this mod because sometimes u need to play the regular not vip mod always.
    natino is offline
    KaiserJeeĈ
    Member
    Join Date: Dec 2009
    Old 07-12-2012 , 04:05   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #9

    If this works perfectly.. could u connect with kyle and fix his version? He has a bug where team scores aint right.. and he or someone solved it with a slay function.. possible for u to fix that?

    Hope to hear from you !
    __________________
    KaiserJeeĈ is offline
    fightarena
    Member
    Join Date: Nov 2011
    Old 08-24-2012 , 00:52   Re: [CS:GO] VIP Mode - GO:VIP
    Reply With Quote #10

    Thank you for that u write this plugin and further development of
    __________________
    German hosting Servers !!!

    quality n1




    ]
    fightarena 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 18:43.


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