Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. id=1500
  2. name=Mülltonne
  3. group=building,ext,kirschkaffee
  4. icon=gfx\icons\barrel.bmp
  5. model=gfx\barrel.b3d
  6. health=200
  7. mat=wood
  8. param=rot,1
  9. maxweight=30000
  10. script=start
  11.     on:start {
  12.         local $this;
  13.         $this=currentid();
  14.     }
  15.    
  16.     on:build_finish {
  17.         event "start";
  18.     }
  19.  
  20.     on:use {
  21.         msgbox "Mülltonne","scripts\mill.s2s","trashbin";
  22.         button 0,"Müll reinwerfen",12,"event gettrash,object,$this; closemenu;";
  23.         button 1,"Müll vernichten",3,"event cleartrash,object,$this; closemenu;";
  24.         button 2,"Juhu!",17, "closemenu;";
  25.     }
  26.    
  27.     on:gettrash {
  28.         exchange "self";
  29.     }
  30.    
  31.     on:cleartrash {
  32.         msgbox "Abfrage","scripts\mill.s2s","abfrage";
  33.         button 1,"Ja ich bin sicher",17,"freestored object,$this,all; closemenu;";
  34.         button 2,"Hm lieber nochmal nachschauen.",19,"event gettrash,object,$this; closemenu;";
  35.     }
  36. script=end
  37.  
  38. ###mill.s2s
  39. //~trashbin
  40. Mal wieder zuviel Mist angesammelt? Dann rein damit in die Mülltonne.
  41.  
  42. //~abfrage
  43. Alle eingelagerten Gegenstände werden vernichtet. Bist du sicher?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement