ScriptzMoDz

All Attachments/Camos [COD4] [GSC]

Aug 14th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. dounlocks()
  2. { self iPrintlnBold("^3Unlocking Camos plz wait 2 mins");
  3. for( n=0; n<8; n++ )
  4. {
  5. for( i=0; i<150; i++ )
  6. {
  7. attachey = tablelookup( "mp/attachmentTable.csv", 0, n, 4 );
  8. baseWeapon = tablelookup( "mp/statstable.csv", 0, i, 4 );
  9. attachmentunlocker = baseWeapon + " " + attachey;
  10. maps\mp\gametypes\_rank::unlockCamo( attachmentunlocker );
  11. wait 0.01;
  12. }
  13. wait 0.01;
  14. }
  15. self iPrintlnBold("^2All camos unlocked");
  16. wait 2;
  17. self iPrintlnBold("^3Unlocking Attachments");
  18. attachment[0] = "grip";
  19. attachment[1] = "gl";
  20. attachment[2] = "acog";
  21. attachment[3] = "silencer";
  22. attachment[4] = "reflex";
  23. for( n=0; n<5; n++ )
  24. {
  25. for( i=0; i<150; i++ )
  26. {
  27. attachey = attachment[n];
  28. baseWeapon = tablelookup( "mp/statstable.csv", 0, i, 4 );
  29. attachmentunlocker = baseWeapon + " " + attachey;
  30. maps\mp\gametypes\_rank::unlockAttachment( attachmentunlocker );
  31. wait 0.01;
  32. }
  33. wait 0.01;
  34. }
  35. self iPrintlnBold("^2All Attachments Unlocked");
  36.  
  37. }
Add Comment
Please, Sign In to add comment