1
0

NPCFinder.qsrc 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. *clr
  2. '<a href="exec: gt ''NPCFinder'', ''finder''">Enter the ID of the character.</a>'
  3. if $ARGS[0] = 'finder':
  4. $looking = input ('ID (like <i>A17</i>)')
  5. gt 'NPCFinder'
  6. end
  7. if $looking ! '':
  8. '<br><br>'
  9. 'Found character:'
  10. '<br>'
  11. '<<$npc_pic[''<<looking>>'']>>'
  12. 'DNA string: <<$npc_dna[''<<$looking>>'']>>'
  13. 'Name: <<$npc_firstname[''<<$looking>>'']>> "<<$npc_nickname[''<<$looking>>'']>>" <<$npc_lastname[''<<$looking>>'']>> (<<$npc_usedname[''<<$looking>>'']>>)'
  14. if npc_dob['<<$looking>>'] ! '': 'Birthday (YYYY-MM-DD): <<mid(npc_dob[''<<$looking>>''],1,4)>>-<<mid(npc_dob[''<<$looking>>''],5,2)>>-<<mid(npc_dob[''<<$looking>>''],7,2)>>'
  15. 'Intelligence: <<npc_intel[''<<$looking>>'']>>'
  16. if npc_grupTipe['<<$looking>>'] ! '': 'Social group: <<npc_grupTipe[''<<$looking>>'']>>'
  17. if npc_sexskill['<<$looking>>'] ! '': 'Sex skill: <<npc_sexskill[''<<$looking>>'']>>'
  18. if npc_rep['<<$looking>>'] ! '': ' Reputation in school: <<npc_rep[''<<$looking>>'']>>'
  19. if npc_haircol['<<$looking>>'] = 0:
  20. 'Natural hair color: black (<<npc_haircol[''<<$looking>>'']>>)'
  21. elseif npc_haircol['<<$looking>>'] = 1:
  22. 'Natural hair color: brown (<<npc_haircol[''<<$looking>>'']>>)'
  23. elseif npc_haircol['<<$looking>>'] = 2:
  24. 'Natural hair color: read (<<npc_haircol[''<<$looking>>'']>>)'
  25. else
  26. 'Natural hair color: blonde (<<npc_haircol[''<<$looking>>'']>>)'
  27. end
  28. if hotcat_rating['<<$looking>>'] ! '': 'Hotness rating: <<hotcat_rating[''<<$looking>>'']>>'
  29. 'Appearance value: <<npc_apprnc[''<<$looking>>'']>>'
  30. 'Height: <<npc_height[''<<$looking>>'']>>'
  31. if npc_gender['<<$looking>>'] = 0:
  32. 'Gender: male'
  33. 'Dick thickness: <<$npc_thdick[''<<$looking>>'']>>'
  34. 'Dick length: <<npc_dick[''<<$looking>>'']>>'
  35. 'Potential: <<npc_spermpot[''<<$looking>>'']>> (default is 10000)'
  36. else
  37. 'Gender: female'
  38. 'Breast size: <<npc_bust[''<<$looking>>'']>>'
  39. end
  40. if npc_herpes['<<$looking>>'] > 0: $npcvendisease += 'herpes; '
  41. if npc_syth['<<$looking>>'] > 0: $npcvendisease += 'syphilis; '
  42. if npc_gon['<<$looking>>'] > 0: $npcvendisease += 'gonorrhea; '
  43. if npc_thrush['<<$looking>>'] > 0: $npcvendisease += 'yeast infection; '
  44. if $npcvendisease = '': $npcvendisease = 'none'
  45. 'Veneral diseases: <<$npcvendisease>>'
  46. 'Sexual acts with PC: <<npc_sex[''$looking'']>>'
  47. 'Perversion: <<npc_perv[''$looking'']>>'
  48. 'Notes: <<$npc_notes[''<<$looking>>'']>>'
  49. ''
  50. 'Found relationships:'
  51. npctemp = 0
  52. :relationshipfinder
  53. gs 'DNA','relate', $npc_dna['<<$looking>>'], $npc_dna['A<<npctemp>>']
  54. if $gen_relationship ! '' and 'A<<npctemp>>' ! '<<$looking>>':
  55. '<br>ID: A<<npctemp>>'
  56. 'DNA string: <<$npc_dna[''A<<npctemp>>'']>>'
  57. 'Name: <<$npc_firstname[''A<<npctemp>>'']>> "<<$npc_nickname[''A<<npctemp>>'']>>" <<$npc_lastname[''A<<npctemp>>'']>> (<<$npc_usedname[''A<<npctemp>>'']>>)'
  58. 'Relationship type: <<$gen_relationship>>'
  59. end
  60. if npctemp < aarraynumber: npctemp += 1 & jump 'relationshipfinder'
  61. killvar 'npctemp'
  62. killvar 'npcvendisease'
  63. killvar 'looking'
  64. end