something isn't working with yours in this line:
alias changexhair [ loadcrosshair (concatword "xhair_" (curweapon)) ]
I'm not familiar with the workings of concatword, and i couldn't figure it out with a little tinkering, so someone else will have to figure it out. here is one I made, that works fine for me:
remember to change the crosshair values, or else it wont do anything
EDIT: this just stopped working for me for some reason. If someone could try it out and tell me what happens/ what is wrong, i would be most grateful.
alias changexhair [ loadcrosshair (concatword "xhair_" (curweapon)) ]
I'm not familiar with the workings of concatword, and i couldn't figure it out with a little tinkering, so someone else will have to figure it out. here is one I made, that works fine for me:
[SELECT ALL] Code:
//Multiple Crosshair Script by Lantry + VenteX
//please enter your crosshair choices in the lines below
alias arxhair [default.png] //Assault Rifle cursor goes here (6)
alias smgxhair [default.png] //SMG cursor goes here (4)
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 [
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 ]
sleep 0 [ changexhair ]
]
remember to change the crosshair values, or else it wont do anything
EDIT: this just stopped working for me for some reason. If someone could try it out and tell me what happens/ what is wrong, i would be most grateful.