(21 Feb 11, 11:59PM)VenteX Wrote: [*] Ability to filter parts of the console out (ex: only show chats)I haven't really messed around with it, but isnt there an option that does this in the HUD menu?
(21 Feb 11, 11:59PM)VenteX Wrote: [*] Different crosshairs/crosshairsizes/crosshairfx for each weapon- I believe you've done a half-way version of this before, but a nicely finalized version, complete with menus and such, would be nice.BAM
[SELECT ALL] Code:
//Multiple Crosshair script by Lantry
//allows you to have a different Xhair for each weapon! Fun!
//for now, please choose your cursors in the lines below
alias arxhair [default.png] //Assault Rifle cursor goes here (6)
alias smgxhair [default.png] //SMG cursor goes here (4)
//alias sniperxhair [default.png] //sniper cursor goes... wait a second... (5)
alias shotgunxhair [default.png] //Shotgun cursor goes here (3)
alias riflexhair [default.png] //Carbine cursor goes here (2)
alias knifexhair [default.png] //knife cursor goes here (0)
alias nadexhair [default.png] //grenade cursor goes here (8)
alias pistolxhair [default.png] // pistol cursor goes here (1)
alias akimboxhair [default.png] //akimbo cursor goes here (9)
alias changexhair [
sleep 300 [if (= (curweapon) 6) [ loadcrosshair $arxhair ]
if (= (curweapon) 4) [ loadcrosshair $smgxhair ]
if (= (curweapon) 3) [ loadcrosshair $shotgunxhair ]
if (= (curweapon) 2) [ loadcrosshair $riflexhair ]
if (= (curweapon) 1) [ loadcrosshair $pistolxhair ]
if (= (curweapon) 0) [ loadcrosshair $knifexhair ]
if (= (curweapon) 8) [ loadcrosshair $nadexhair ]
if (= (curweapon) 9) [ loadcrosshair $akimboxhair ] ]
]
bind MOUSE4 [ universaldelta 1; changexhair ]
bind MOUSE5 [ universaldelta -1; changexhair ]
This is very clunky, because it only changes when you scroll, so it doesn't work with quicknade, akimbo auto switch, or using the number keys to switch weapons. Please tell me a better way to do this, if there is one.