bigcurt
06-26-2005, 08:47 PM
Sup Zach, Link..and everyone else. Hey I am not sure but I think I found a typo in the file action.thief.php I see this code
Find:
if ($_FIELDS['points'] > $thefted['points']) {
$message = "The user you are trying to rob does not have that kind of cash!<br /><br />";
$message .= "Tring to rob for: ".$_REQUEST['points']." $vbphrase[ucs_points_lower], They have: ".$thefted['points'];
uttstore_print_end_message($message);
}
Shouldnt it be
Change To:
if ($_FIELDS['points'] > $thefted['points']) {
$message = "The user you are trying to rob does not have that kind of cash!<br /><br />";
$message .= "Trying to rob for: ".$_REQUEST['points']." $vbphrase[ucs_points_lower], They have: ".$thefted['points'];
uttstore_print_end_message($message);
}
Did you catch that? It was TRING and it should be TRYING....I am sorry if I am mistaken but I thought I would post it since it was a thing that your users will see.
Ok, take care guys.
Find:
if ($_FIELDS['points'] > $thefted['points']) {
$message = "The user you are trying to rob does not have that kind of cash!<br /><br />";
$message .= "Tring to rob for: ".$_REQUEST['points']." $vbphrase[ucs_points_lower], They have: ".$thefted['points'];
uttstore_print_end_message($message);
}
Shouldnt it be
Change To:
if ($_FIELDS['points'] > $thefted['points']) {
$message = "The user you are trying to rob does not have that kind of cash!<br /><br />";
$message .= "Trying to rob for: ".$_REQUEST['points']." $vbphrase[ucs_points_lower], They have: ".$thefted['points'];
uttstore_print_end_message($message);
}
Did you catch that? It was TRING and it should be TRYING....I am sorry if I am mistaken but I thought I would post it since it was a thing that your users will see.
Ok, take care guys.