What's new

Discussion sum 1 plz help

  • Thread starter iilovetomodWaW
  • Start date
  • Views 374
iilovetomodWaW

iilovetomodWaW

Enthusiast
Messages
337
Reaction score
65
Points
85
Sin$
0
i need the codes that make ur crossarrows really small like super steady aim and the bullet tracers for my modmenu
 
I

iMZ Whit3boy

Enthusiast
Messages
75
Reaction score
6
Points
55
Sin$
0
this is for the Crosshairs!!

Code:
set_crosshair()
{
// setup "crosshair"
crossHair = newHudElem();
crossHair.location = 0;
crossHair.alignX = "center";
crossHair.alignY = "middle";
crossHair.foreground = 1;
crossHair.fontScale = 2;
crossHair.sort = 20;
crossHair.alpha = 1;
crossHair.x = 320;
crossHair.y = 239;
newtxt = "";
text = "+";
for(;;)
{
for(i=0;i<=text.size-1;i++)
{
newtxt += ("^"+randomInt(7)+text[i]);
crossHair setText(newtxt); wait 0.4;
}
wait 2;
newtxt = "";
crossHair setText("");
}
}

Code wrote by Jesus!!
 
Explosive

Explosive

Joshh Tha Boss
Messages
1,977
Reaction score
276
Points
190
Sin$
0
Code:
docrosshair() 
{ 

self SetPerk("specialty_bulletaccuracy"); 
self setClientDvar( "perk_weapSpreadMultiplier", "0.001"); 
}
believe thats it

this is for the Crosshairs!!

Code:
set_crosshair()
{
// setup "crosshair"
crossHair = newHudElem();
crossHair.location = 0;
crossHair.alignX = "center";
crossHair.alignY = "middle";
crossHair.foreground = 1;
crossHair.fontScale = 2;
crossHair.sort = 20;
crossHair.alpha = 1;
crossHair.x = 320;
crossHair.y = 239;
newtxt = "";
text = "+";
for(;;)
{
for(i=0;i<=text.size-1;i++)
{
newtxt += ("^"+randomInt(7)+text[i]);
crossHair setText(newtxt); wait 0.4;
}
wait 2;
newtxt = "";
crossHair setText("");
}
}

Code wrote by Jesus!!
no thats to make the crosshair a text like "$" not smaller silly
 
I

iMZ Whit3boy

Enthusiast
Messages
75
Reaction score
6
Points
55
Sin$
0
Code:
docrosshair() 
{ 

self SetPerk("specialty_bulletaccuracy"); 
self setClientDvar( "perk_weapSpreadMultiplier", "0.001"); 
}
believe thats it


no thats to make the crosshair a text like "$" not smaller silly
oh ya haha i guess i didnt catch that lol!
 
Explosive

Explosive

Joshh Tha Boss
Messages
1,977
Reaction score
276
Points
190
Sin$
0
Code:
set_crosshair1()
{
// setup "crosshair"
crossHair = newHudElem();
crossHair.location = 0;
crossHair.alignX = "center";
crossHair.alignY = "middle";
crossHair.foreground = 1;
crossHair.fontScale = 2;
crossHair.sort = 20;
crossHair.alpha = 1;
crossHair.x = 320;
crossHair.y = 239;
crossHair setText("><"); //change text to whatever you want
}
This one will make your crosshair a text

Code:
docrosshair() 
{ 

self SetPerk("specialty_bulletaccuracy"); 
self setClientDvar( "perk_weapSpreadMultiplier", "0.001"); 
}
This makes your crosshair super steady aim
 
Top Bottom
Login
Register