[Help] Reset points for each Character
i want to make balanced reset system so that every character gets different points after reset so for example 'i want BK to get 330 points, muse elf to get 380 points, sm to get 360 points and mg to get 450 points
dl to get 370 pointsevery reset, how is this possible to do? with sql query or any other method.
Re: [Help] Reset points for each Character
It's simple. On my server i make a reset system where you have 32k everywhere your stat are reset and you have full set and weapon in your vault..... So here it's the same
You need:
Information:
$a=mssql_query("SELECT * from Character WHERE AccountID='$account_id' and Name='$name'");
$aa=mssql_fetch_array($a);
Then condition:
if($aa['Reset'] == 0)
{
mssql_query("
UPDATE characters
SET GrandRes=' .$generation. '
WHERE AccountID='$account_id' and Name='$name'
");
}
All script follow this.
Good luck