Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ash foreach i,j in get_inventory(){if(i.candy == true)print_html(i.name+" (count: "+j+") is "+i.candy_type);}
- more verbose and (attempting and succeeding in being) ordered based on complexity and ID%5 :
- ash string [int] type;
- type[0] = "complex";
- type[1] = "simple";
- for cock from 0 to 1 {
- for m from 0 to 4 {
- foreach i,j in get_inventory(){
- int butts = i.to_int();
- butts %= 5;
- if(butts == m && i.candy == true && i.candy_type == type[cock]){
- print_html(i.name+" (count: "+j+", itemID%5: "+butts+") is "+type[cock]);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment