• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Auto "Age 15" bug fix SQL job.

for(alive>0){makeMoney()}
Loyal Member
Joined
Aug 1, 2006
Messages
357
Reaction score
68
Well, i decided to make a SQL job to fix the the age 15 bug bug. It is a really simple script but i know a lot of people need this. If you do not know how to make a SQL job, please use the search function to learn how to :)

Script:
Code:
USE MuOnline
UPDATE MEMB_INFO
Set sno__numb = 1
WHERE sno__numb > 1

Enjoy :p
 
Experienced Elementalist
Joined
Apr 29, 2007
Messages
260
Reaction score
4
Re: [Release]Auto "Age 15" bug fix SQL job.

good work
 
for(alive>0){makeMoney()}
Loyal Member
Joined
Aug 1, 2006
Messages
357
Reaction score
68
Re: [Release]Auto "Age 15" bug fix SQL job.

you mad it for 1 minute,then very good job :)

:) thanks, i have other scripts that teleport people out of silent map, and stuff.
 
Experienced Elementalist
Joined
Sep 14, 2006
Messages
229
Reaction score
0
Re: [Release]Auto "Age 15" bug fix SQL job.

We have to setup this as MSSQL Job per time ?

i think it have to be like this:

USE MuOnline
UPDATE MEMB_INFO
Set sno__numb = '1'
WHERE sno__numb > '1'
 
for(alive>0){makeMoney()}
Loyal Member
Joined
Aug 1, 2006
Messages
357
Reaction score
68
Re: [Release]Auto "Age 15" bug fix SQL job.

We have to setup this as MSSQL Job per time ?

i think it have to be like this:

USE MuOnline
UPDATE MEMB_INFO
Set sno__numb = '1'
WHERE sno__numb > '1'

Yes, you have to make the SQL job every 1 minute, and no, it can be like how i posted, you only need the '' when you are adding text in.
 
Experienced Elementalist
Joined
Sep 14, 2006
Messages
229
Reaction score
0
Re: [Release]Auto "Age 15" bug fix SQL job.

lol, try running this:

USE MuOnline
UPDATE MEMB_INFO
Set sno__numb = 1
WHERE sno__numb > 1

in your SQL Query analyser.. it cant Run..

Even the stats fixer is created with ' '
 
for(alive>0){makeMoney()}
Loyal Member
Joined
Aug 1, 2006
Messages
357
Reaction score
68
Re: [Release]Auto "Age 15" bug fix SQL job.

lol, try running this:

USE MuOnline
UPDATE MEMB_INFO
Set sno__numb = 1
WHERE sno__numb > 1

in your SQL Query analyser.. it cant Run..

Even the stats fixer is created with ' '

Okay, you are supposed to make a JOB, it will not work if you just run it in SQL query analyzer.
 
Newbie Spellweaver
Joined
Nov 24, 2006
Messages
39
Reaction score
0
Re: [Release]Auto "Age 15" bug fix SQL job.

thx friend
 
Back
Top