Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var itemstogive = Array(4000313, 4000313, 4000313, 4000313);
  2. var amount = Array(1, 1, 100, 100);
  3. function start() {
  4.     cm.sendOk("Heres a starter pack");
  5. }
  6. function action(mode, type, selection) {
  7.     if (mode == 1) {
  8.         for (var i = 0; i <itemstogive.length; i++)
  9.             cm.gainItem(itemstogive[i], amount[i]);
  10.         cm.warp(910000000);
  11.     }
  12.     cm.dispose()
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement