123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- # newspaper_pages
- if $ARGS[0] = 'init':
- ! For MODS: Add to the $np_pages and $np_front_pages ahead of the cikl call!
- gs 'newspaper_pages', 'add_event_pages'
- gs 'newspaper_pages', 'fill_arrays'
- end
- if $ARGS[0] = 'add_event_pages':
- ! if ...:
- ! $np_front_pages[] = 'gs ''loc'', ''loc_arg'' '
- ! end
- ! if ...:
- ! $np_pages[] = 'gs ''loc'', ''loc_arg'' '
- ! end
- if daystart => 247 and daystart <= 260: $np_front_pages[] = 'gs ''newspaper_pages'', ''boris_arrested'' '
- if rand(0, 9) = 0 and NewspaperVars['gad_missing_day'] < daystart:
- $NewspaperVars['gad_missing_name'] = $randname
- NewspaperVars['gad_missing_age'] = rand(9, 69)
- if NewspaperVars['gad_missing_counter'] ! 0:
- NewspaperVars['gad_missing_counter'] += 1
- else
- NewspaperVars['gad_missing_counter'] = rand(13, 17)
- NewspaperVars['gad_missing_counter'] += daystart / 35
- end
- NewspaperVars['gad_missing_day'] = daystart + 15 + NewspaperVars['gad_missing_counter']
- $np_pages[] = 'gs ''newspaper_pages'', ''gad_missing'' '
- end
- end
- if $ARGS[0] = 'fill_arrays':
- if arrsize('np_front_pages') = 0:
- gs 'newspaper_pages', 'add_generic_frontpage'
- end
- :fill_newspaper_loop
- if arrsize('np_pages') < 3:
- gs 'newspaper_pages', 'add_generic_page'
- jump 'fill_newspaper_loop'
- end
- end
- if $ARGS[0] = 'add_generic_frontpage':
- ! $np_front_pages[] = 'gs ''newspaper_pages'', ''generic_front_<<rand(0, 1)>>'' '
- $np_front_pages[] = 'gs ''newspaper_pages'', ''generic_<<rand(0, 2)>>'' '
- end
- if $ARGS[0] = 'add_generic_page':
- $np_pages[] = 'gs ''newspaper_pages'', ''generic_<<rand(0, 2)>>'' '
- end
- !!=======================================================!!
- !! !!
- !! GENERIC !!
- !! !!
- !!=======================================================!!
- if $ARGS[0] = 'generic_0':
- '<center>Mysterious lights over pushkin</center>'
- *nl
- 'Last night there was several reports of floating lights over Pushkin lake, authorities have dismissed it as light bouncing off the water into low mist. However eye witness reports and photographs discredit the official report.'
- 'Read more on page 4.'
- end
- if $ARGS[0] = 'generic_1':
- '<center>Missing cosmonaut found living in cave in Vladivostok</center>'
- *nl
- 'Former cosmonaut Valentin Vitalyevich Lebedev (82) had been reported missing 3 weeks ago after he failed to turn up for a state function celebrating the 25th anniversary of the Scientific Geoinformation Center of the Russian Academy of Science which Valentin started and is the director of. He was found in a cave with only basic amenities and a small supply of food. When asked why he was there he simply said he''d grown sick of fancy dinners and red tape. He plans to return to his home and duties next week.'
- end
- if $ARGS[0] = 'generic_2':
- '<center>Help advance medical research today</center>'
- *nl
- 'A St. Petersburg based medical clinic is offering significant payments to those that are willing to take part in their medical trials. We have interviewed various participants.'
- '"All I had to do was swallow a pill and report back a week later. Took me less than 10 minutes and haven''t regretted it!"'
- '"The staff is very friendly and helpful. My hair grew 20 cm, and even got paid for it! That''s a steal if you ask me."'
- '[Redacted]'
- '"I''ve taken part in multiple trials now, and I haven''t had any complaints! Best decision of my life to take part."'
- *nl
- 'Signup for a medical trial today, and help build a brighter future!'
- if experimentQW['discovered'] < 1: experimentQW['discovered'] = 1
- end
- !!=======================================================!!
- !! !!
- !! EVENTS !!
- !! !!
- !!=======================================================!!
- if $ARGS[0] = 'Gad_missing':
- '<center>More missing people in Gadukino</center>'
- *nl
- 'Today <<$NewspaperVars[''gad_missing_name'']>> name, <<NewspaperVars[''gad_missing_age'']>> has been reported missing in Gadukino. They was last seen four days ago foraging in the forest. This makes this the <<NewspaperVars[''gad_missing_counter'']>> person that has gone missing in recent months and the authorities are at a loss in trying to locate to what has happened to them.'
- end
- if $ARGS[0] = 'boris_arrested':
- '<center>Mayor Election Scandal</center>'
- *nl
- 'In a shocking turn of events the Mayoral candidate Boris Barlovsky has been arrested and is under investigation for numerous offences including running an escort services in Pavlosk.'
- 'We can exclusively reveal the full scandal on page 3.'
- end
- --- newspaper_pages ---------------------------------
|