How To get A Normal Character 4th Reborn or w.e

06/21/2010 16:56 peoplebot#1
Say i set up a donating system on my site. How would i make ppl 3rd reborn from 2nd reborn. Like would i use some command or go to my characters file?
06/21/2010 19:16 Arcо#2
Unless its mysql you'd have to do it manually.
06/21/2010 21:30 peoplebot#3
if it is mysql how do i do it lol
06/21/2010 21:32 Arcо#4
So you want it, as soon as they donate the money, their character is automatically 4th rb?
06/21/2010 23:00 peoplebot#5
not automatically, but whenever i decide to make it 4th or w.e, or make em lvl 137. U know what i mean

Not auto but manually
06/22/2010 00:01 Arcо#6
Oh then just go into the the mysql and change the character yourself lol.
if that doesn't work.
////Example
/Givelvl Arco 137
if (Cmd[0] == "/Givelvl")
{
Game.Character Chr = Game.World.CharacterFromName(Cmd[1]);
if (Chr != null)
{
GC.MyChar.Level = byte.Parse(Cmd[2])
}
}
////Example
/giverb Arco 4


if (Cmd[0] == "/Giverb")
{
Game.Character Chr = Game.World.CharacterFromName(Cmd[1]);
if (Chr != null)
{
GC.MyChar.Reborns = byte.Parse(Cmd[2])
}
}