Guest User

Untitled

a guest
Jun 25th, 2012
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. Instructions for your Kheyre co. product.
  2. Open up your main.cs and go to the bottom, place this code down there.
  3.  
  4.  
  5.  
  6.  
  7.  
  8. function scrollInventory(%a)
  9. {
  10.  if (%a < 0)
  11. {
  12.  inventoryUp(1);
  13. schedule(0,10, inventoryUp, 0);
  14. }
  15. else
  16. {
  17. inventoryDown(1);
  18. schedule(0,10, inventoryDown, 0);
  19. }
  20. };
  21.  
  22.  
  23. moveMap.bind(mouse0, "zaxis", scrollInventory);
Advertisement
Add Comment
Please, Sign In to add comment