Poll

Good or bad?

Horrible!
Bad...
Okay...
Good..
Great!

Author Topic: CyanEX Crosshair. This is a Crosshair!  (Read 10196 times)

This is a cyan crosshair with, as you can tell, A black dot in the center!

Please, if you download this please comment
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Looks like stuff. Get out.

What the hell is this?

EDIT: WHY DO YOU THINK I WOULD DOWNLOAD IT?!
« Last Edit: January 22, 2010, 08:28:07 PM by master117 »

I posted this as a joke.

Liar. You just said that cause your being flamed

too big, named incorrectly, and it fails.

And don't lie about the joke thing...

Stop posting crosshairs.
For the love of god.

At LEAST post it with a script so it will work and minges don't go around saying, "HOW T FK DU I DU THS".
Code: [Select]
Crosshair.bitmap = "Add-ons/Gui_Crosshair_Replacement/Crosshair";
Edit: Why the hell is it CYAN? Thats just a gawd-awful, eye-distracting color.

At LEAST post it with a script so it will work and minges don't go around saying, "HOW T FK DU I DU THS".
Code: [Select]
Crosshair.bitmap = "Add-ons/Gui_Crosshair_Replacement/Crosshair";
You people are stupid. Please learn to install christ forsaken CI.

You people are stupid. Please learn to install christ forsaken CI.
I typed that in three-point-seven seconds. It's so simple, a caveman could do it. What's so bad about it?

Hurr hurr no one said it was "Great!" in the poll.
Hurr.

EDIT: Never mind.
« Last Edit: January 22, 2010, 09:38:53 PM by DarkShadow6 »

I typed that in three-point-seven seconds. It's so simple, a caveman could do it. What's so bad about it?
Learn to install a crosshair. You don't even install it. You just save it where necessary.

Learn to install a crosshair. You don't even install it. You just save it where necessary.
I put it in an addon folder with that script in "client.cs". Another way to do it is to put it in "base/client/ui/" and name it "crossHair.png" and delete/rename the old one.
EDIT: Oh, wait, that was what you were talking about. Silly me.
« Last Edit: January 22, 2010, 09:50:42 PM by DarkShadow6 »

I made this in a few minutes.
Code: [Select]
// DarkShadow6.
// Bind a key to "Crosshair Toggle" to make your crosshair change.


if(!$CrosshairBindings)
{
$remapDivision[$remapCount] = "Crosshair Toggle";
$remapName[$remapCount] = "Toggle";
$remapCmd[$remapCount] = "CrosshairToggle";
$remapCount++;
$CrosshairBindings = true;
}


$CrosshairFlag = 0;


function CrosshairToggle(%isTrue)
{
if(%isTrue)
{
if($CrosshairFlag == 3)
{
$CrosshairFlag = 0;
Crosshair.bitmap = "Add-Ons/Gui_Crosshair_Toggle/CrossHair1.png";
}
else if($CrosshairFlag == 2)
{
$CrosshairFlag = 3;
Crosshair.bitmap = "Add-Ons/Gui_Crosshair_Toggle/CrossHair3.png";
}
else if($CrosshairFlag == 1)
{
$CrosshairFlag = 2;
Crosshair.bitmap = "Add-Ons/Gui_Crosshair_Toggle/CrossHair2.png";
}
else if($CrosshairFlag == 0)
{
$CrosshairFlag = 1;
Crosshair.bitmap = "blank.png";
}
else
{
$CrosshairFlag = 0;
}
}
}