loadg 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # loadg
  2. gs 'saveupdater'
  3. gs 'din_npc'
  4. !!-------------------Above this line to be kept-------------------
  5. !!-------------------------- above this line can be removed for 0.6.1 ---------------------------------
  6. if dounspell = 1: dounsplkil = 2 & gs 'body_shape', 'hardreset'
  7. if pirsA = 1 and PirsA1_owned = 0:PirsA1_owned = 1
  8. if pirsB = 1 and PirsB1_owned = 0:PirsB1_owned = 1
  9. if pirsC = 1 and PirsC1_owned = 0:PirsC1_owned = 1
  10. if pirsD = 1 and PirsD1_owned = 0:PirsD1_owned = 1
  11. if pirsE = 1 and PirsE1_owned = 0:PirsE1_owned = 1
  12. if pirsF = 1 and PirsF1_owned = 0:PirsF1_owned = 1
  13. if pirsN = 1 and PirsN1_owned = 0:PirsN1_owned = 1
  14. if pirsG = 1 and PirsG1_owned = 0:PirsG1_owned = 1
  15. !!adding default shoes and assigning them
  16. sgandm[6] = 1
  17. strainers[21] = 1
  18. if $cheapshoetype = '':
  19. $cheapshoetype = 'gandm' & cheapshoenumber = 6
  20. if $clothingworntype = 'cheap': $shoeworntype = 'gandm' & shoewornnumber = 6
  21. end
  22. if $averageshoetype = '':
  23. $averageshoetype = 'gandm' & averageshoenumber = 6
  24. if $clothingworntype = 'average': $shoeworntype = 'gandm' & shoewornnumber = 6
  25. end
  26. if $expensiveshoetype = '':
  27. $expensiveshoetype = 'gandm' & expensiveshoenumber = 6
  28. if $clothingworntype = 'expensive': $shoeworntype = 'gandm' & shoewornnumber = 6
  29. end
  30. if $formalshoetype = '':
  31. $formalshoetype = 'gandm' & formalshoenumber = 6
  32. if $clothingworntype = 'formal': $shoeworntype = 'gandm' & shoewornnumber = 6
  33. end
  34. if $officeshoetype = '':
  35. $officeshoetype = 'gandm' & officeshoenumber = 6
  36. if $clothingworntype = 'office': $shoeworntype = 'gandm' & shoewornnumber = 6
  37. end
  38. if $schoolshoetype = '':
  39. $schoolshoetype = 'gandm' & schoolshoenumber = 6
  40. if $clothingworntype = 'school': $shoeworntype = 'gandm' & shoewornnumber = 6
  41. end
  42. if $exerciseshoetype = '':
  43. $exerciseshoetype = 'trainers' & exerciseshoenumber = 21
  44. if $clothingworntype = 'exercise': $shoeworntype = 'gandm' & shoewornnumber = 21
  45. end
  46. if $fetishshoetype = '':
  47. $fetishshoetype = 'gandm' & fetishshoenumber = 6
  48. if $clothingworntype = 'fetish': $shoeworntype = 'gandm' & shoewornnumber = 6
  49. end
  50. if $exhibitshoetype = '':
  51. $exhibitshoetype = 'gandm' & exhibitshoenumber = 6
  52. if $clothingworntype = 'exhibit': $shoeworntype = 'gandm' & shoewornnumber = 6
  53. end
  54. if $uniformshoetype = '':
  55. $uniformshoetype = 'gandm' & uniformshoenumber = 6
  56. if $clothingworntype = 'uniform': $shoeworntype = 'gandm' & shoewornnumber = 6
  57. end
  58. if $burlesqueshoetype = '':
  59. $burlesqueshoetype = 'gandm' & burlesqueshoenumber = 6
  60. if $clothingworntype = 'burlesque': $shoeworntype = 'gandm' & shoewornnumber = 6
  61. end
  62. if $alternativeshoetype = '':
  63. $alternativeshoetype = 'gandm' & alternativeshoenumber = 6
  64. if $clothingworntype = 'alternative': $shoeworntype = 'gandm' & shoewornnumber = 6
  65. end
  66. --- loadg ---------------------------------