Advertisement
Aenimus

Lists your available outfits, pieces and their slots

May 3rd, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // Most of this was already written on the Mafia wiki.
  2.  
  3. foreach x,outfit_name in all_normal_outfits() {
  4. if(have_outfit(outfit_name)) {
  5. print("The outfit " + outfit_name + " requires: ", "blue");
  6. foreach x,piece in outfit_pieces(outfit_name)
  7. print("" + piece + " (" + piece.to_slot() + ")");
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement