Do you not have an equals sign on your keyboard?
I fix for you. HTH
[SELECT ALL] Code:
//Multiple Crosshair Script by Lantry
//please enter your crosshair choices in the lines below
arxhair = [default.png] //Assault Rifle cursor goes here (6)
arxhairsz = [15] //and cursor size goes here
smgxhair = [default.png] //SMG cursor goes here (4)
smgxhairsz = [15] //and cursor size goes here
shotgunxhair = [default.png] //Shotgun cursor goes here (3)
shotgunxhairsz = [15] //and cursor size goes here
riflexhair = [default.png] //Carbine cursor goes here (2)
riflexhairsz = [15] //and cursor size goes here
knifexhair = [default.png] //knife cursor goes here (0)
knifexhairsz = [15] //and cursor size goes here
nadexhair = [default.png] //grenade cursor goes here (8)
nadexhairsz = [15] //and cursor size goes here
pistolxhair = [default.png] // pistol cursor goes here (1)
pistolxhairsz = [15] //and cursor size goes here
akimboxhair = [default.png] //akimbo cursor goes here (9)
akimboxhairsz = [15] //and cursor size goes here
add2conloop [
if (= (curweapon) 6) [ loadcrosshair $arxhair; crosshairsize $arxhairsz ]
if (= (curweapon) 4) [ loadcrosshair $smgxhair; crosshairsize $smgxhairsz ]
if (= (curweapon) 3) [ loadcrosshair $shotgunxhair; crosshairsize $shotgunxhairsz ]
if (= (curweapon) 2) [ loadcrosshair $riflexhair; crosshairsize $riflexhairsz ]
if (= (curweapon) 1) [ loadcrosshair $pistolxhair; crosshairsize $pistolxhairsz ]
if (= (curweapon) 0) [ loadcrosshair $knifexhair; crosshairsize $knifexhairsz ]
if (= (curweapon) 8) [ loadcrosshair $nadexhair; crosshairsize $nadexhairsz ]
if (= (curweapon) 9) [ loadcrosshair $akimboxhair; crosshairsize $akimboxhairsz ]
]