Guest User

Untitled

a guest
Dec 20th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function script NoItemProduce {
  2. .input = getarg(0);
  3.  
  4. setarray(.disabledItems,501,512,503);
  5.  
  6. if(array_exists(.disabledItems,.input)){
  7. dispbottom("This item is not available for item producing",C_RED);
  8. return true;
  9. }
  10.  
  11. return false;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment