[HELP] how to fix lockbox !!! ERROR: unknown lockbox item 103030

Results 1 to 6 of 6
  1. #1
    Member patipakdeeying is offline
    MemberRank
    Sep 2014 Join Date
    Muang Surin, SuLocation
    53Posts

    sad [HELP] how to fix lockbox !!! ERROR: unknown lockbox item 103030

    i try for add skin nvidia lockbox thank you
    obj_ServerLockbox[20] created. ItemID:103030 numItems:0 OwnerID:1000000
    !!! ERROR: unknown lockbox item 103030


  2. #2
    Account Upgraded | Title Enabled! GetRektBambi is offline
    MemberRank
    Oct 2015 Join Date
    268Posts

    Re: [HELP] how to fix lockbox !!! ERROR: unknown lockbox item 103030

    In Server search for:

    BOOL obj_ServerLockbox::OnCreate()
    Then you will see
    if(m_ItemID == WeaponConfig::ITEMID_Lockbox) {
    FileName = "Data\\ObjectsDepot\\Weapons\\Item_Lockbox_01.sco";
    bsize = r3dPoint3D(1.0900440f, 1.2519419f, 0.79267800f);
    }
    else
    r3dError("unknown lockbox item %d\n", m_ItemID);
    Simply add yours to the check, as it is serverside and only a skin you can simply do this..

    if(m_ItemID == WeaponConfig::ITEMID_Lockbox || m_ItemID == 103030) //GetRektBambi is Sexxyy {
    FileName = "Data\\ObjectsDepot\\Weapons\\Item_Lockbox_01.sco";
    bsize = r3dPoint3D(1.0900440f, 1.2519419f, 0.79267800f);
    }
    else
    r3dError("unknown lockbox item %d\n", m_ItemID);
    That should be it. Compile and restart your servers.

  3. #3
    Member patipakdeeying is offline
    MemberRank
    Sep 2014 Join Date
    Muang Surin, SuLocation
    53Posts

    Re: [HELP] how to fix lockbox !!! ERROR: unknown lockbox item 103030

    add or replace sir

  4. #4
    Account Upgraded | Title Enabled! GetRektBambi is offline
    MemberRank
    Oct 2015 Join Date
    268Posts

    Re: [HELP] how to fix lockbox !!! ERROR: unknown lockbox item 103030

    Replace

  5. #5
    Member patipakdeeying is offline
    MemberRank
    Sep 2014 Join Date
    Muang Surin, SuLocation
    53Posts

    Re: [HELP] how to fix lockbox !!! ERROR: unknown lockbox item 103030

    oh thank you sir :D

  6. #6
    Account Upgraded | Title Enabled! GetRektBambi is offline
    MemberRank
    Oct 2015 Join Date
    268Posts

    Re: [HELP] how to fix lockbox !!! ERROR: unknown lockbox item 103030

    No problem, remember if you get an error just search for the error. All I did was search for
    unknown lockbox item
    and it lead me to your problem. Very very basic. Goodluck!



Advertisement