Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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