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!

Disable Summoner

Newbie Spellweaver
Joined
Aug 18, 2004
Messages
77
Reaction score
0
1: Open the "Stored Procedures" for MuOnline

2: Find WZ_CreateCharacter

3: Find the line:
Code:
Declare @g1 varchar(10), @g2 varchar(10), @g3 varchar(10), @g4 varchar(10), @g5 varchar(10)

4: Add BEFORE that line:
Code:
-- The next 5 lines are to disable Summoner
if (@Class = 80)
	begin
		SET @Result = 0x02
		GOTO TranProcEnd
	end

5: Summoners are now disabled and you do not need to edit any databases.

Anyone that tries to make a character with Summoner will now get the message "Cannot create any more characters"
 
Last edited:
Newbie Spellweaver
Joined
Aug 18, 2004
Messages
77
Reaction score
0
Re: [Guide] Disable Summoner

Updated to make it simpler.
 
Newbie Spellweaver
Joined
Mar 3, 2007
Messages
44
Reaction score
3
Re: [Guide] Disable Summoner

very good DataMatrix.

can you explain how to do the same but with the Dark Lord?
 
Newbie Spellweaver
Joined
Aug 18, 2004
Messages
77
Reaction score
0
Re: [Guide] Disable Summoner

Add this:

Code:
-- The next 5 lines are to disable Dark Lord
if (@Class = 64)
	begin
		SET @Result = 0x02
		GOTO TranProcEnd
	end
 
Newbie Spellweaver
Joined
Mar 3, 2007
Messages
44
Reaction score
3
Re: [Guide] Disable Summoner

Add this:

Code:
-- The next 5 lines are to disable Dark Lord
if (@Class = 64)
    begin
        SET @Result = 0x02
        GOTO TranProcEnd
    end

thanks again datamatrix.
grettings.
 
Experienced Elementalist
Joined
Mar 25, 2008
Messages
203
Reaction score
5
Re: [Guide] Disable Summoner

nice but need to delete button from main
 
Newbie Spellweaver
Joined
Feb 6, 2009
Messages
40
Reaction score
1
Re: [Guide] Disable Summoner

how do that on season3 Ep2 i dont know wich file to open :(
 
Initiate Mage
Joined
Dec 23, 2008
Messages
1
Reaction score
0
Re: [Guide] Disable Summoner

And have can i enable sumoner?
 
Newbie Spellweaver
Joined
Jan 16, 2008
Messages
5
Reaction score
0
Re: [Guide] Disable Summoner

If you will have a version below of the 1,04 you do not have as to place and if you incapacitated of this skill you are alone to remove the code line that you inserted.
 
Experienced Elementalist
Joined
Jan 2, 2007
Messages
245
Reaction score
109
Re: [Guide] Disable Summoner

So, you can disable Summor by bypassing the DataServers and change de req lvl for creating.
 
Newbie Spellweaver
Joined
Dec 1, 2009
Messages
50
Reaction score
1
hey can you tell me how do i enables summoner because i use RMST server files and pls the summoner are not even in my Char list thank you
 
Newbie Spellweaver
Joined
Jul 16, 2015
Messages
35
Reaction score
0
eliminating the sources ?. some help ?.
or delete button ?.
 
Back
Top