Delete Summoner

Results 1 to 3 of 3
  1. #1
    Enthusiast erikgaston is offline
    MemberRank
    Jul 2015 Join Date
    35Posts

    ! Delete Summoner

    How to edit the level of requirement summoner?
    I do not want to use it, I could do that they can not create thread disable the summoner.
    But I want that you can not select.
    Any help ?.I was thinking about it with the source but I could not think of anything, use the files IA Julia


  2. #2
    Gamma DragonSeth is offline
    MemberRank
    Aug 2011 Join Date
    2,996Posts

    Re: Delete Summoner

    First Method :

    go to Enterprise Manager -> database -> MuOnline > Tables > AccountCharacter

    right click on AccountCharacter -> Design Table,scroll down until you see "Summoner" click on it,change default value to (0) and uncheck "Allow Nulls"

    after this go to Query Analyzer and use this on MuOnline

    Use MuOnline
    UPDATE AccountCharacter SET Summoner=0

    Second Method:

    go to enterprise manager>databases>muonline> stored procedures> double click WZ_CreateCharacter
    click ctrl+A then open notepad and paste it inside there.

    find those lines "Declare @g1 varchar(10), @g2 varchar(10), @g3 varchar(10), @g4 varchar(10), @g5 varchar(10)"
    and before those lines add this codes

    -- The next 5 lines are to disable SUM.
    if (@Class = 80)
    begin
    SET result = 0x02
    GOTO TranProcEnd
    end


    close the enterprise manager and go test if u can create RF.

    Character Class Codes:
    Code:
    DK = 16
    ELF = 32
    WIZ = 0 
    MG = 48
    DL = 64
    SUM = 80
    RF = 96
    Replace 80 with what ever.

  3. #3
    Enthusiast erikgaston is offline
    MemberRank
    Jul 2015 Join Date
    35Posts

    Re: Delete Summoner

    Quote Originally Posted by DragonSeth View Post
    First Method :

    go to Enterprise Manager -> database -> MuOnline > Tables > AccountCharacter

    right click on AccountCharacter -> Design Table,scroll down until you see "Summoner" click on it,change default value to (0) and uncheck "Allow Nulls"

    after this go to Query Analyzer and use this on MuOnline

    Use MuOnline
    UPDATE AccountCharacter SET Summoner=0

    Second Method:

    go to enterprise manager>databases>muonline> stored procedures> double click WZ_CreateCharacter
    click ctrl+A then open notepad and paste it inside there.

    find those lines "Declare @g1 varchar(10), @g2 varchar(10), @g3 varchar(10), @g4 varchar(10), @g5 varchar(10)"
    and before those lines add this codes

    -- The next 5 lines are to disable SUM.
    if (@Class = 80)
    begin
    SET result = 0x02
    GOTO TranProcEnd
    end


    close the enterprise manager and go test if u can create RF.

    Character Class Codes:
    Code:
    DK = 16
    ELF = 32
    WIZ = 0 
    MG = 48
    DL = 64
    SUM = 80
    RF = 96
    Replace 80 with what ever.
    if I could do that and run
    remove the button, you can?
    401 set at a level such that they can not create
    I have the sources



Advertisement