SgrupDisco.qsrc 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # SgrupDisco
  2. *clr & cla
  3. gs 'themes', 'food_menu'
  4. gs 'stat'
  5. act 'Move away':gt $loc, $metka
  6. '<center><b><font color="maroon">Disco</font></b></center>'
  7. !!Can probably be removed
  8. !!gs 'gschool_lessons', 'npc_data'
  9. !! First string for popular kids
  10. $textgrup = ''
  11. count1 = 0
  12. i = 1
  13. '<center><table cellspacing="3">'
  14. :gruploop
  15. if count1 = 6 : $textgrup += '<tr>'
  16. if npc_grupTipe['A<<i>>'] = 1 and discoenable['A<<i>>'] = 1:
  17. count1 += 1
  18. $textgrup += '' + '<td bgcolor=<<$bcolor2>> align="center"><img height="100" src="images/pc/npc_headshots/<<i>>.jpg"><br>' + $npcGo['A<<i>>']
  19. end
  20. if count1< 6 and npc_grupTipe['A<<i>>'] = 1:
  21. $textgrup += '</td>'
  22. elseif count1 = 6 and npc_grupTipe['A<<i>>'] = 1:
  23. $textgrup +='</td></tr><tr>' & count1 = 0
  24. end
  25. i += 1
  26. if i <= aarraynumber:jump 'gruploop'
  27. !! Force new line for gopniks
  28. $textgrup +='</td></tr><tr>'
  29. !! Second string for gopniks
  30. $textgrup2 = ''
  31. count1 = 0
  32. i = 1
  33. '<center><table cellspacing="3">'
  34. :gruploop2
  35. if count1 = 6 : $textgrup2 += '<tr>'
  36. if npc_grupTipe['A<<i>>'] = 4 and discoenable['A<<i>>'] = 1:
  37. count1 += 1
  38. $textgrup2 += '' + '<td bgcolor=<<$bcolor2>> align="center"><img height="100" src="images/pc/npc_headshots/<<i>>.jpg"><br>' + $npcGo['A<<i>>']
  39. end
  40. if count1< 6 and npc_grupTipe['A<<i>>'] = 4:
  41. $textgrup2 += '</td>'
  42. elseif count1 = 6 and npc_grupTipe['A<<i>>'] = 4:
  43. $textgrup2 +='</td></tr><tr>' & count1 = 0
  44. end
  45. i += 1
  46. if i <= aarraynumber:jump 'gruploop2'
  47. '<<$textgrup>>'
  48. *nl
  49. '<<$textgrup2>>'
  50. '<center>Most the cool kids are dancing, while the gopnics are standing in the corner of the room, keeping to themselves.</center>'
  51. if hour >= 21 and hour < 23 and week=5: '<center>At the entrance of the disco hall stands <a href="exec:gt ''VolleyTrenerSpeak''">Coach Mikhail Nikolayevich</a></center>'
  52. '</table><center>'
  53. --- SgrupDisco ---------------------------------