MuCore Clear Invectory Script ! Bug

Results 1 to 8 of 8
  1. #1
    Newbie GoldMuOnline is offline
    MemberRank
    Aug 2014 Join Date
    Riga, Latvia, LLocation
    12Posts

    MuCore Clear Invectory Script ! Bug

    Someone can help me whit clear invectory script bug ?

    its mucore modules how can i fix it ?




  2. #2

    Re: MuCore Clear Invectory Script ! Bug

    u can try this
    http://forum.ragezone.com/f196/fix-r...cgames-712881/
    but its only for RF
    change RF class code with all of your characters that have this issue.

  3. #3
    Newbie GoldMuOnline is offline
    MemberRank
    Aug 2014 Join Date
    Riga, Latvia, LLocation
    12Posts

    Re: MuCore Clear Invectory Script ! Bug

    I need only fix script not characters
    im using now bk

  4. #4

    Re: MuCore Clear Invectory Script ! Bug

    No idea man, are u using z-team files right?

  5. #5
    Grand Master 2009x2014 is offline
    Grand MasterRank
    Dec 2009 Join Date
    2,765Posts

    Re: MuCore Clear Invectory Script ! Bug

    Code:
                 $clear = $core_db->Execute("Update character set [inventory]=CONVERT(varbinary(1080), null) where mu_id=?", array(
                            $id
                        ));

    Change varbinary length (Character -> Design -> Inventory (varbinary(XXXX))

    for zT s8e2 it's varbinary(3792)

  6. #6
    Newbie GoldMuOnline is offline
    MemberRank
    Aug 2014 Join Date
    Riga, Latvia, LLocation
    12Posts

    Re: MuCore Clear Invectory Script ! Bug

    Quote Originally Posted by 4FUNer View Post
    Code:
                 $clear = $core_db->Execute("Update character set [inventory]=CONVERT(varbinary(1080), null) where mu_id=?", array(
                            $id
                        ));

    Change varbinary length (Character -> Design -> Inventory (varbinary(XXXX))

    for zT s8e2 it's varbinary(3792)

    i change it but its same !

  7. #7
    Grand Master 2009x2014 is offline
    Grand MasterRank
    Dec 2009 Join Date
    2,765Posts

    Re: MuCore Clear Invectory Script ! Bug

    Quote Originally Posted by GoldMuOnline View Post
    i change it but its same !
    Ok seems NULL won't work for zTeam

    replace
    Code:
    [inventory]=CONVERT(varbinary(1080), null)
    to

    Code:
    [inventory]=CONVERT(varbinary(3792), 0x".str_repeat('FF',3792).")

  8. #8
    Newbie GoldMuOnline is offline
    MemberRank
    Aug 2014 Join Date
    Riga, Latvia, LLocation
    12Posts

    Re: MuCore Clear Invectory Script ! Bug

    Quote Originally Posted by 4FUNer View Post
    Ok seems NULL won't work for zTeam

    replace
    Code:
    [inventory]=CONVERT(varbinary(1080), null)
    to

    Code:
    [inventory]=CONVERT(varbinary(3792), 0x".str_repeat('FF',3792).")

    Great job bro ! its working now ;)



Advertisement