Author Topic: Server rating v3.0  (Read 5963 times)

Code: [Select]
$Rating::Score = 2000000000000000.5;

EDIT:Done, also added credits to you Truce.

No, I don't want to be associated with a broken piece of crap.

EDIT:
To clarify, what I was talking about was Techno came to me with this script and was going to have me fix it, but I told him I'd walk him through fixing it, which we never did. This is why it is still broken, and why I didn't script any of it.
« Last Edit: June 07, 2009, 12:43:14 PM by Truce »

No, I don't want to be associated with a broken piece of crap.

EDIT:
To clarify, what I was talking about was Techno came to me with this script and was going to have me fix it, but I told him I'd walk him through fixing it, which we never did. This is why it is still broken, and why I didn't script any of it.
K I'll get rid of your credits then.

K I'll get rid of your credits then.

That still doesn't address the issue of having an add-on that doesn't even work how it's supposed to.

That still doesn't address the issue of having an add-on that doesn't even work how it's supposed to.
Me and Tech are working on v1.5. Hopefully all the bugs will be fixed.

You can use = in if statements without it assigning it, but it's still good to use ==.
Code: [Select]
%var=3;if(%var=4){echo("Variable is four");}echo(%var);Gets "Variable is four" followed by "4". The assignment operator assigns things.

I don't quite think you understand when an Add-On should be released.

nice, ill download when fixed

looks cool but waiting till its less buggy

Love it Just PM me Please when you get it Fixed

Code: [Select]
%var=3;if(%var=4){echo("Variable is four");}echo(%var);Gets "Variable is four" followed by "4". The assignment operator assigns things.

Proof.
Space Guy wins.

Bump. Anyways, v2.0 is almost done with no bugs hopefully!
(Special thanks to Fooly Cooly for helping me fix the bugs)

Bump. Anyways, v2.0 is almost done with no bugs hopefully!
(Special thanks to Fooly Cooly for recreating it.)

v2.0 Released! No bugs!

Code: [Select]
if(!$RatingRan)
{
exec("Config/server/Rating.cs");
$RatingRan = 1;
}

Problem: The console will yell at you if that file doesn't exist.
Fix: Add an isFile check before exec'ing.

Code: [Select]
if(!$RatingRan)
{
if(isFile("Config/server/Rating.cs"))
exec("Config/server/Rating.cs");
$RatingRan = 1;
}