Allows players to have a sudden, triggered speed burst and a chargeable speed burst. Requires only ES 2.0.0.250c+
Options:[syntax="es"]// SpeedBurst release 1 options
// ./addons/eventscripts/speedburst/speedburst.cfg
// http://addons.eventscripts.com/addons/view/speedburst
// Load this addon with: es_load speedburst
// To configure language settings for SpeedBurst please see speedburst_languages.ini
// ***** Speed burst options *****
// 0 = no short speed burst, 1 = speed burst possible with say command
speedburst_burst_on 1
// Say command to trigger a speed burst
speedburst_burst_trigger "!speed"
// Velocity multiplier for speed burst, 1 = normal speed
speedburst_burst_multiplier 3
// Number of seconds players must wait between using the speed burst
speedburst_burst_timelimit 5
// ***** Speed charge options *****
// 0 = no chargeable burst, 1 = allow chargeable speed burst
speedburst_charge_on 1
// Client command to charge speed bursts
speedburst_chargetrigger "speedburst"
// Bind a key to the charge trigger with a + in front of it. Hold down the key to charge the speed
// burst and release the key to use the charged speed.
// Number of seconds to completely charge a speed burst
speedburst_charge_chargetime 15
// Number of seconds between updating the charge hudhint -- must be greater than zero and less than or equal to one
speedburst_charge_progressupdate 1
// Multiplier for a completely uncharged speed burst
speedburst_charge_minmultiplier 0.7
// Multiplier for a completely charged speed burst
speedburst_charge_maxmultiplier 6
// ***** Announcement options *****
// Announcing speed commands: 0 = no announcement, 1 = in console, 2 = in chat area
speedburst_announce_command 2
// Announcing using speed burst too soon after last: 0 = no change, 1 = in console, 2 = in chat area
speedburst_announce_toosoon_chat 2
// Announcing using speed burst too soon after last: 0 = no change, 1 = in center text
speedburst_announce_toosoon_center 1
// Announcing using speed burst too soon after last: 0 = no change, 1 = as a hud hint
speedburst_announce_toosoon_hud 1
// ***** Notes *****
// -A maximum velocity of 2048 is imposed due to Source restrictions.
// -Due to the fact speed bursts are multipliers the faster a player is moving when a burst is used the bigger the net speed gain.
// Use a speed burst after jumping to reach extraordinary heights!
// -Because of the jumping possibilities with speed bursts, this addon is fun to couple with Jump Stats:
// http://addons.eventscripts.com/addons/view/jumpstats
// ***** Event documentation *****
// The following events will fire while SpeedBurst is loaded:
// speedburst_burst
// - Fires when a player uses a speed burst.
// event_var(userid) - Player who used the speed burst
// speedburst_startcharge
// event_var(userid) - Player who began charging his or her speed burst
// speedburst_endcharge
// event_var(userid) - Player who stopped charging his or her speed burst
// event_var(time) - Number of seconds the player charged the speed burst
// event_var(multiplier) - Speed multiplier the player received
// Each event also provides event_var(es_steamid), event_var(es_username), and all the other event_vars that accompany
// event_var(userid). More information can be found here: http://www.eventscripts.com/pages/Extended_event_variables
[/syntax]
Please see the forum link below for more translations or if you have a translation to add. Please also post general questions or comments.
Installation
Install with:[syntax="es"]es_install speedburst[/syntax]Load once for [b]speedburst.cfg[/b] to appear:[syntax="es"]es_load speedburst[/syntax]Configure your options in [b]speedburst.cfg[/b] and then reload the addon.
Version Notes For 1
Updated on: 2009-06-28 21:03:11 EST by SuperDave (View Zip Contents)
- Initial release