- Joined
- Aug 18, 2004
- Messages
- 77
- Reaction score
- 0
1: Open the "Stored Procedures" for MuOnline
2: Find WZ_CreateCharacter
3: Find the line:
4: Add BEFORE that line:
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"
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: