// #autoload // #name = hamSpam // #version = 1.0 // #date = February 10, 2002 // #author = borlaK|RT // #warrior = borlaK // #email = borlak@home.com // #web = http://www.team-rt.com // #description = Change turnspeed on keyboard so spammers can adjust better. Also bind ENTER to fire. // #status = working $pref::Input::KeyboardTurnSpeed = 0.001; function borFire(%val) { $mvTriggerCount0 += $mvTriggerCount0 & 1 == %val ? 2 : 1; } package hamSpam { function OptionsDlg::onWake(%this) { if (!$borSpamSelect) { $RemapName[$RemapCount] = "Alternate Fire"; $RemapCmd[$RemapCount] = "borFire"; $RemapCount++; $borSpamSelect = true; } parent::onWake(%this); } }; activatePackage(hamSpam);