Advertisement
kolton

Untitled

Nov 13th, 2011
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. addEventListener('itemaction', // event based item scanner
  2. function (gid, mode, code, global) {
  3. if (mode === 11) { // in shop
  4. switch (code) { // add codes for items you want scanned
  5. case "9tw": // greater talons
  6. case "7tw": // runic talons
  7. case "9qr": // scissors quhab
  8. case "7qr": // scissors suwayyah
  9. //case "ltp": // light plate
  10. case "xtp": // mage plate
  11. case "utp": // archon plate
  12. case "xpk": // barbed shield
  13. validGids.push(gid);
  14. break;
  15. }
  16.  
  17. itemsFound = true;
  18. }
  19. }
  20. );
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement