Sgrup5.qsrc 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Sgrup5
  2. !! Obsolete?
  3. *clr & cla
  4. gs 'themes', 'food_menu'
  5. gs 'stat'
  6. $textgrup = ''
  7. act 'Leave':gt 'gschool_lessons', 'short_break'
  8. if $loc = 'gschool_grounds' or $loc = 'gschool_lunch':
  9. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/school/lunch/peremena<<urand>>.jpg"></center>'
  10. 'You decide to spend your break in a classroom. As you enter, you find several of your classmates already sitting there: the smart kids decided to get an early start on their homework assignments, while the outcasts are mostly hiding away from everyone else, hoping that no one will pick on them today.'
  11. end
  12. *nl
  13. !!Can probably be removed
  14. !!gs 'gschool_lessons', 'npc_data'
  15. $textgrup = ''
  16. count1 = 0
  17. i = 1
  18. '<center><table cellspacing="3">'
  19. :gruploop
  20. if count1 = 6 : $textgrup += '<tr>'
  21. if npc_grupTipe['A<<i>>'] = 5 and schoolenable['A<<i>>'] = 1:
  22. count1 += 1
  23. $textgrup += '' + '<td bgcolor=<<$bcolor2>> align="center"><img height="100" src="images/pc/npc_headshots/<<i>>.jpg"><br>' + $npcGo['A<<i>>']
  24. end
  25. if count1< 6 and npc_grupTipe['A<<i>>'] = 5:
  26. $textgrup += '</td>'
  27. elseif count1 = 6 and npc_grupTipe['A<<i>>'] = 5:
  28. $textgrup +='</td></tr><tr>' & count1 = 0
  29. end
  30. i += 1
  31. if i <= aarraynumber:jump 'gruploop'
  32. '<<$textgrup>>'
  33. --- Sgrup5 ---------------------------------