Quote:
Originally posted by GenSec
You can change rules for robber.
Just change
PHP Code:
if ($bbuserinfo[posts]<100) {
eval("standarderror(\"".gettemplate('store_steal_cannot')."\");");
}
To
PHP Code:
if ($bbuserinfo[posts]<100 AND $bbuserinfo[storep]>5) {
eval("standarderror(\"".gettemplate('store_steal_cannot')."\");");
}
In this case robber need to have 100 posts and $5.
|
This worked for me until I edited my database. I edited the database so that my users could have an unlimited amount of money and also could have a negative amount of money. Could this have affected how this works? My users can now steal regardless how much money they have.