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!

Verry many usefull scripts For Your Mu Online Server !

Junior Spellweaver
Joined
Aug 14, 2007
Messages
131
Reaction score
2
Here is some werry helpfull scripts for Mu Online servers.


----------------------
Negative Money Fix :

Code:
UPDATE Character
SET Money='2000000000'
WHERE Money<-1

--------------------------------

Personal ID Code Check "Disabling" :

Code:
UPDATE MEMB_INFO
SET sno__numb=('')
WHERE sno__numb>1
-----------------------------

Starting Money (You starting money by changing ('10000000') to some other value.) :

Code:
UPDATE Character
SET Money=('10000000')
WHERE Money<1

-------------------------------

Auto Stats Fix :



Code:
UPDATE Character
SET Strength='32766'
WHERE Strength<1
 
UPDATE Character
SET Dexterity='32766'
WHERE Dexterity<1
 
UPDATE Character
SET Vitality='32766'
WHERE Vitality<1
 
UPDATE Character
SET Energy='32766'
WHERE Energy<1




If there is a Dark Lord Then it's will look so :



Code:
UPDATE Character
SET Strength='32766'
WHERE Strength<1
 
UPDATE Character
SET Dexterity='32766'
WHERE Dexterity<1
 
UPDATE Character
SET Vitality='32766'
WHERE Vitality<1
 
UPDATE Character
SET Energy='32766'
WHERE Energy<1
 
UPDATE Character
SET [COLOR=#ff0000]Leadership[/COLOR]='32766'
WHERE Leadership<1

---------------------------------

Auto Clear PK


Code:
UPDATE Character
SET PkLevel = ('0'), PkTime = ('0'), PkCount = ('0')
Where PkLevel>2

--------------------------------------


Starting stats edditing:


Code:
UPDATE Character
SET Strength='how mutch starting strenght you wanth'
WHERE Strenght<18
 
UPDATE Character
SET Dexterity='how mutch starting dexterity you wanth'
WHERE Dexterity<16
 
UPDATE Character
SET Vitality='how much starting vitality you wanth'
WHERE Vitality<16
 
UPDATE Character
SET Energy='how much starting energy you wanth'
WHERE Energy<16




For versions that have Dark Lord :



Code:
UPDATE Character
SET Strength='how mutch starting strenght you wanth'
WHERE Strenght<18
 
UPDATE Character
SET Dexterity='how mutch starting dexterity you wanth'
WHERE Dexterity<16
 
UPDATE Character
SET Vitality='how much starting vitality you wanth'
WHERE Vitality<16
 
UPDATE Character
SET Energy='how much starting energy you wanth'
WHERE Energy<16
 
UPDATE Character
SET Leadership='how much starting command you wanth'
WHERE Leadership<15


-----------------------

Incorect connected users shown on the web fix. (First Take Server Offline !) (If your server is offline maybe there is connected users shown on the web, it will fix that).



Code:
UPDATE MEMB_STAT
SET Connect_Stat='0'
WHERE Connect_Stat>0


-------------------------

Thise script will automaticaly teleports users from "The Place Of Excile" To Lorencia, bar !

Code:
UPDATE Character
SET MapNumber=('0'), MapPosX=('125'), MapPosY=('125')
WHERE MapNumber=('5')
---------------------

Thise one will fix guild score -99 bug.

Code:
UPDATE Guild
SET G_Score=('0')
WHERE G_Score<-1
---------------------

Thise delete all there resets (DONT USE IT LIKE JOB).

Code:
UPDATE Character
SET Resets=('0')
WHERE Resets>0

----------------------

Thise one will clear all the vaults.

Code:
UPDATE warehouse
SET Items=('')

----------------------

Thise one for deleting all the items from inventories.

Code:
UPDATE Character
SET Inventory=('')

----------------------

Thise one will unban all the players.

Code:
UPDATE Character
SET CtlCode=('0')
WHERE CtlCode=('1')

-----------------------

Thise one will delete all GMs.

Code:
UPDATE Character
SET CtlCode=('0')
WHERE CtlCode='32' OR CtlCode='8'

------------------------

Thise one will delete all the level up points.

Code:
UPDATE Character
SET LevelUpPoints=('0')
WHERE LevelUpPoints>0


------------------------

Auto Reset

Code:
UPDATE Character
SET cLevel=('1') , experience=('0')
WHERE cLevel>349

---------------------

Thise delete all there resets (DONT USE IT LIKE JOB).

Code:
UPDATE Character
SET Resets=('0')
WHERE Resets>0

------------------------

Thise one will delete all the level up points.

Code:
UPDATE Character
SET LevelUpPoints=('0')
WHERE LevelUpPoints>0

------------------------
Give a NO of starting Level up points to characters.
Edit: 1500 with how much or less do you want.

Code:
UPDATE Character
SET LevelUpPoint=('') + 1500
WHERE cLevel<=1 and Resets<=1

-------------------------

This one will add free credits for ALL players


Code:
Update MEMB_CREDITS
SET credits=credits+100

---------------------------------

This one will drop MuOnline database (better dont use it ^^)

Code:
DROP dbo.MuOnline

---------------------------------

This one will show you top 100 credited accounts

Code:
SELECT TOP 100 FROM MEMB_CREDITS
WHERE credits>0

---------------------------------

This one will delete all level up points for characters who has max stats

Code:
update Character set leveluppoint='0'
where
Strength+Dexterity+Vitality+Energy='131068'
OR
Strength+Dexterity+Vitality+Energy+Leadership='163835'














------------------------------------------------------------------








:SniperHea
:sweatdrop



I will make some more usefull scripts later =)


Only this thread will be updated now !

I know many identic scripts like thise, but all thise is writen by my hands, so it can contain mistakes. Please post all my mistekes in this thread.

Updated (06.11.2009)
 
Last edited:
Experienced Elementalist
Joined
Dec 28, 2007
Messages
288
Reaction score
2
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

10x :) gj
 
Divine Celestial
Loyal Member
Joined
Aug 24, 2007
Messages
890
Reaction score
5
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

nice but how about for DL Command?
 
Newbie Spellweaver
Joined
Apr 21, 2005
Messages
98
Reaction score
0
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

Good 10/10
 
Experienced Elementalist
Joined
Apr 29, 2007
Messages
260
Reaction score
4
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

UPDATE MEMB_STAT
SET Connec_Stat='0'
WHERE Connect_Stat>0

Isn't that should be like this :
Code:
UPDATE MEMB_STAT
SET Connec[COLOR="Red"]t[/COLOR]_Stat='0'
WHERE Connect_Stat>0
 
Junior Spellweaver
Joined
Aug 14, 2007
Messages
131
Reaction score
2
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

Sorry.. i did mistake =)
 
Newbie Spellweaver
Joined
Feb 15, 2007
Messages
5
Reaction score
0
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

Code:
UPDATE Character
SET Command='32766'
WHERE Command<1

Isn't that should be like this :

Code:
UPDATE Character
SET [COLOR="Red"]Leadership[/COLOR]='32766'
WHERE [COLOR="Red"]Leadership[/COLOR]<1

And...

Code:
UPDATE Character
SET Command='how much starting command you wanth'
WHERE Command<15

Code:
UPDATE Character
SET [COLOR="Red"]Leadership[/COLOR]='how much starting command you wanth'
WHERE [COLOR="Red"]Leadership[/COLOR]<15
 
Experienced Elementalist
Joined
Jul 3, 2007
Messages
200
Reaction score
3
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

overloading mssql.. creating lags. half of them are useless imo. but other half is good.
 
Newbie Spellweaver
Joined
Sep 7, 2006
Messages
55
Reaction score
0
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

I need help with the negative score of guild....
 
Experienced Elementalist
Loyal Member
Joined
Sep 18, 2007
Messages
252
Reaction score
1
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

The scripts are stoling, but thx anway. :)
 
Newbie Spellweaver
Joined
Jun 13, 2007
Messages
64
Reaction score
0
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

fix codes to very nice :)
 
Junior Spellweaver
Joined
Aug 14, 2007
Messages
131
Reaction score
2
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

Code:
UPDATE Character
SET Command='32766'
WHERE Command<1

Isn't that should be like this :

Code:
UPDATE Character
SET [COLOR=red]Leadership[/COLOR]='32766'
WHERE [COLOR=red]Leadership[/COLOR]<1

And...

Code:
UPDATE Character
SET Command='how much starting command you wanth'
WHERE Command<15

Code:
UPDATE Character
SET [COLOR=red]Leadership[/COLOR]='how much starting command you wanth'
WHERE [COLOR=red]Leadership[/COLOR]<15

I writed "Command" beacose i didn't worked with any newest versions data bases, so i thinked and added "Command" :)
 
Junior Spellweaver
Joined
Aug 14, 2007
Messages
131
Reaction score
2
Re: [Release] Some Werry Helpfull Scripts For Your Mu Online Server !

Something more needed ?
 
Junior Spellweaver
Joined
Aug 14, 2007
Messages
131
Reaction score
2
Re: [Release] Verry many usefull scripts For Your Mu Online Server !

Guild score -99 fix added =)
 
Junior Spellweaver
Joined
Feb 9, 2007
Messages
125
Reaction score
0
Re: [Release] Verry many usefull scripts For Your Mu Online Server !

can you add script that the new charcter(sommoner)will beig for Elbland(map 51)
and fix stat for new chracter
thanks bro
 
Junior Spellweaver
Joined
Aug 14, 2007
Messages
131
Reaction score
2
Re: [Release] Verry many usefull scripts For Your Mu Online Server !

1. I dont now Character's class code number.
2. I dont now starting coordinats of 51 map.
 
Junior Spellweaver
Joined
Feb 9, 2007
Messages
125
Reaction score
0
Re: [Release] Verry many usefull scripts For Your Mu Online Server !

1.Class code is 80 If i'm not wrong
2.map: 51, coord x: 50, coord y: 215
Thanks bro
 
Back
Top