Bom eu criei uma JoB aqui com resets tabelado por pontos vo explicar:
Tabela Reset Para Player Free:
Do 1º reset ate o 20º --> Reseta lvl 320 = 100 pontos por Reset "0"
Do 21º reset ate o 100º --> Reseta lvl 340 = 50 pontos por Reset "50 kk"
Do 101º reset ate o 5000º --> Reseta lvl 350 = 25 pontos por Reset "50 kk"
Tabela Reset Para Player Vip:
Do 1º reset ate o 20º --> Reseta lvl 320 = 200 pontos por Reset "0"
Do 21º reset ate o 100º --> Reseta lvl 340 = 100 pontos por Reset "25 kk"
Do 101º reset ate o 5000º --> Reseta lvl 350 = 50 pontos por Reset "25 kk"
ATENÇÃO: Após Chegar ao Lvl necessário saia da acc por 1 minuto para ser efetuado o reset...
Para criar esse tipo de reset faça o Seguinte:
Entre no Enterprise Mananger > SQL Server Group > Local ...> Management.
Dpois entre em SQL Server Agente> Jobs.
Clique com o botão direito New JoB.
Em Name coloque AutoReset, Depois vai na guia Steps, New, Nome coloque o Mesmo em type deixa do jeito que está.
em database coloque MuOnline
e cole o codigo abaixo:
Depois clique em Parse de OK.
Vá na guia Schedules>New Shedules>Coloque o mesmo nome
clique em change e coloque:
Dayle: 1 day(s)
Occurs every: 1 Minutes
Pronto De OK e Só.
Creditos
Pelo Tuto: Eu eo [ADM]SnaKe
Tabela Reset Para Player Free:
Do 1º reset ate o 20º --> Reseta lvl 320 = 100 pontos por Reset "0"
Do 21º reset ate o 100º --> Reseta lvl 340 = 50 pontos por Reset "50 kk"
Do 101º reset ate o 5000º --> Reseta lvl 350 = 25 pontos por Reset "50 kk"
Tabela Reset Para Player Vip:
Do 1º reset ate o 20º --> Reseta lvl 320 = 200 pontos por Reset "0"
Do 21º reset ate o 100º --> Reseta lvl 340 = 100 pontos por Reset "25 kk"
Do 101º reset ate o 5000º --> Reseta lvl 350 = 50 pontos por Reset "25 kk"
ATENÇÃO: Após Chegar ao Lvl necessário saia da acc por 1 minuto para ser efetuado o reset...
Para criar esse tipo de reset faça o Seguinte:
Entre no Enterprise Mananger > SQL Server Group > Local ...> Management.
Dpois entre em SQL Server Agente> Jobs.
Clique com o botão direito New JoB.
Em Name coloque AutoReset, Depois vai na guia Steps, New, Nome coloque o Mesmo em type deixa do jeito que está.
em database coloque MuOnline
e cole o codigo abaixo:
Citação:
UPDATE Character
SET clevel=('1') , experience=('0') , LevelUpPoint=100+100*Resets , Resets=Resets+1 , Strength=('30') , Dexterity=('30') , Vitality=('30') , Energy=('30')
FROM Character join Memb_Stat on Character.Accountid = Memb_Stat.memb___id COLLATE Latin1_General_CS_AS
JOIN MEMB_INFO ON Character.AccountID=MEMB_INFO.memb___id COLLATE Latin1_General_CS_AS
WHERE clevel>319 and Resets<('20') and Money>('0') and MEMB_INFO.vip=0 and MEMB_STAT.ConnectStat=0
UPDATE Character
SET clevel=('1') , experience=('0') , LevelUpPoint=50+50*Resets+1000 , Resets=Resets+1 , Strength=('30') , Dexterity=('30') , Vitality=('30') , Energy=('30')
FROM Character join Memb_Stat on Character.Accountid = Memb_Stat.memb___id COLLATE Latin1_General_CS_AS
JOIN MEMB_INFO ON Character.AccountID=MEMB_INFO.memb___id COLLATE Latin1_General_CS_AS
WHERE clevel>339 and Resets<('100') and Money>('50000000') and MEMB_INFO.vip=0 and MEMB_STAT.ConnectStat=0
UPDATE Character
SET clevel=('1') , experience=('0') , LevelUpPoint=25+25*Resets+3500 , Resets=Resets+1 , Strength=('30') , Dexterity=('30') , Vitality=('30') , Energy=('30')
FROM Character join Memb_Stat on Character.Accountid = Memb_Stat.memb___id COLLATE Latin1_General_CS_AS
JOIN MEMB_INFO ON Character.AccountID=MEMB_INFO.memb___id COLLATE Latin1_General_CS_AS
WHERE clevel>349 and Resets<('5000') and Money>('50000000') and MEMB_INFO.vip=0 and MEMB_STAT.ConnectStat=0
UPDATE Character
SET clevel=('1') , experience=('0') , LevelUpPoint=200+200*Resets , Resets=Resets+1 , Strength=('50') , Dexterity=('50') , Vitality=('50') , Energy=('50')
FROM Character join Memb_Stat on Character.Accountid = Memb_Stat.memb___id COLLATE Latin1_General_CS_AS
JOIN MEMB_INFO ON Character.AccountID=MEMB_INFO.memb___id COLLATE Latin1_General_CS_AS
WHERE clevel>319 and Resets<('20') and Money>('0') and MEMB_INFO.vip=1 and MEMB_STAT.ConnectStat=0
UPDATE Character
SET clevel=('1') , experience=('0') , LevelUpPoint=100+100*Resets+2000 , Resets=Resets+1 , Strength=('50') , Dexterity=('50') , Vitality=('50') , Energy=('50')
FROM Character join Memb_Stat on Character.Accountid = Memb_Stat.memb___id COLLATE Latin1_General_CS_AS
JOIN MEMB_INFO ON Character.AccountID=MEMB_INFO.memb___id COLLATE Latin1_General_CS_AS
WHERE clevel>339 and Resets<('100') and Money>('25000000') and MEMB_INFO.vip=1 and MEMB_STAT.ConnectStat=0
UPDATE Character
SET clevel=('1') , experience=('0') , LevelUpPoint=50+50*Resets+7000 , Resets=Resets+1 , Strength=('50') , Dexterity=('50') , Vitality=('50') , Energy=('50')
FROM Character join Memb_Stat on Character.Accountid = Memb_Stat.memb___id COLLATE Latin1_General_CS_AS
JOIN MEMB_INFO ON Character.AccountID=MEMB_INFO.memb___id COLLATE Latin1_General_CS_AS
WHERE clevel>349 and Resets<('5000') and Money>('25000000') and MEMB_INFO.vip=1 and MEMB_STAT.ConnectStat=0
Depois clique em Parse de OK.
Vá na guia Schedules>New Shedules>Coloque o mesmo nome
clique em change e coloque:
Dayle: 1 day(s)
Occurs every: 1 Minutes
Pronto De OK e Só.
Creditos
Pelo Tuto: Eu eo [ADM]SnaKe