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:
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
 
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.
 
Re: [Guide] Disable Summoner

So, you can disable Summor by bypassing the DataServers and change de req lvl for creating.
 
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
 
Back