Description
Adds a new level of difficulty to the scout in GunGame4. Does not allow players to zoom while holding the scout. Players are warned, flashed and returned to the scopeless view when ever they try to zoom.
There is an added option to level up after a single scopeless scout kill (default) even if multikill is set above 1.
[size=18][b]Requirements:[/b][/size]
Eventscripts 1.5beta or higher
[size=18][b]Installation:[/b][/size]
Extract the attached zip file into your cstrike folder.
Add 'es_xload/es_xunload gungame4/addons/custom/gg_scopeless_scout' to your 'cstrike\addons\eventscripts\gungame4\addons\custom' folder.
eg.
[syntax="es"]// GunGame Custom Addons Loader
// Load and unload all of your custom addons from this file.
//
block load
{
// Load your custom addons here.
// Single bullet awps EXAMPLE script
//es_xload gungame4/addons/custom/gg_awp_bullet
// Gives players the option to buy levels
//es_xload gungame4/addons/custom/gg_buy_level
// Auto reload when players get a kill
//es_xload gungame4/addons/custom/gg_reload
// es_xload gungame4/addons/custom/gg_scopeless_scout
es_xload gungame4/addons/custom/gg_fdl
es_xload gungame4/addons/custom/gg_tk_protection
es_xload gungame4/addons/custom/gg_sb_manager
// es_xload gungame4/addons/custom/gg_teamplay
es_xload gungame4/addons/custom/gg_weapon_restrict
}
block unload
{
// Unload your custom addons here.
// Single bullet awps EXAMPLE script
// es_xunload gungame4/addons/custom/gg_awp_bullet
// Gives players the option to buy levels
//es_xunload gungame4/addons/custom/gg_buy_level
// Auto reload when players get a kill
//es_xunload gungame4/addons/custom/gg_reload
// es_xunload gungame4/addons/custom/gg_scopeless_scout
es_xunload gungame4/addons/custom/gg_fdl
es_xunload gungame4/addons/custom/gg_tk_protection
es_xunload gungame4/addons/custom/gg_sb_manager
// es_xunload gungame4/addons/custom/gg_teamplay
es_xunload gungame4/addons/custom/gg_weapon_restrict
}[/syntax]
[size=18][b]Adjustable settings:[/b][/size]
[syntax="es"] // If gg_multikills is set above 1, you can enable this to level up after only
// 1 kill with the scout.
ss_one_kill 1
// Amount of time player gets flashed when they try to zoom (in seconds) 0 = disable
ss_flash_time 1[/syntax]