Advertisement
LukasCCB

run case system with skins system from codexito

Jul 7th, 2016
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.16 KB | None | 0 0
  1. /*
  2. if you have afonso the code will need to modify it to a cash system.
  3. using my frontend with case + skin system put this codes
  4. Frontend: https://mega.nz/#!5w8hXQZS!RjI2mhGGJyQqQMPyafkbQ3B9AUTl0dLx09N0sLsZFk4
  5. */
  6. // warz.sln
  7. // Search:
  8. void addItemCategoriesToUI(class r3dScaleformMovie& gfxMovie)
  9. in var[7].SetBoolean(true); // visible in store
  10.  
  11. // Add
  12. var[8].SetBoolean(true);
  13.  
  14. // in
  15. var[0].SetNumber(7);
  16. var[1].SetString("unknown"); // or "skins" (from codexito - afonso, is for skins system he)
  17. var[2].SetBoolean(true);
  18. var[3].SetBoolean(true);
  19. gfxMovie.Invoke("_root.api.addTabType", var, 4);
  20.  
  21. // paste
  22. var[0].SetNumber(8);
  23. var[1].SetString("case");
  24. var[2].SetBoolean(true);
  25. var[3].SetBoolean(true);
  26. gfxMovie.Invoke("_root.api.addTabType", var, 4);
  27.  
  28. // search
  29. void FrontendWarZ::eventMarketplaceActive(r3dScaleformMovie* pMovie, const Scaleform::GFx::Value* args, unsigned argCount)
  30.  
  31. // paste
  32. gfxMovie.SetVariable("_root.api.Main.Marketplace.Marketplace.Tab7.visible", true);
  33. gfxMovie.SetVariable("_root.api.Main.Marketplace.Marketplace.Tab8.visible", true);
  34. gfxMovie.SetVariable("_root.api.Main.Marketplace.Marketplace.Tab9.visible", true); // new
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement