Eidos Forums

Go Back   Eidos Forums > Eidos Classics > Eidos Games Archive > Startopia > Startopia - General Discussion - Archive

 
 
Thread Tools Display Modes
  #1  
Old 06-30-2002, 05:34 PM
Binro_the_Heretic Binro_the_Heretic is offline
Gamer
 
Join Date: Jun 2002
Location: Beulah, Florida
Posts: 81
Question Attracting Peeps

I know certain peeps will leave if they don't find adequate or desired facilities on your station but does anyone know for sure if the facilities you build determine how many of which type of alien comes through your ports?

I only ask because that's the way it used to work in the old "Dungeon Keeper" games. Certain creatures would only come through the portals if you constructed certain rooms.

I just noticed today after starting a new sandbox and totally neglecting the bio-deck (didn't even hire one token karmarama to plant some things just made a lake for swimming and that was it) there were only five karmaramas on board but dozens each of the other races. Could a lack of plants have kept the karmaramas away?
  #2  
Old 06-30-2002, 11:54 PM
Pinky the Cow Pinky the Cow is offline
Gamer
 
Join Date: Jun 2002
Location: Moscow, Russia
Posts: 124
Default

Quote:
Either a peeps00.txt or mish.txt

set grey_max ((segmentdecks + 8) - (penance_suit_count / 2))
set targ_max ((segmentdecks + 8) - (penance_suit_count / 2))
set siren_max (((segmentdecks + 6) / 2) - (penance_suit_count / 2))
set male_siren_max (((segmentdecks + 6) / 2) - (penance_suit_count / 2))
set salt_hog_max ((segmentdecks + 10) - (penance_suit_count / 2))
set gor_max ((segmentdecks + 6) - (penance_suit_count / 2))
set gem_slug_max (segmentdecks - (penance_suit_count / 2))
set karmarama_max ((segmentdecks + 4) - (penance_suit_count / 2))
set turakken_max ((segmentdecks + 6) - (penance_suit_count / 2))
set zedem_monk_max (segmentdecks + 6)
set memau_max (peep_count / 50)
As you can see it's all defined by creator of a mission - by default in sandbox they are dependent on the number of segments and penitents.
__________________
V I S I O N T H I N G, rest in peace.
  #3  
Old 07-01-2002, 04:49 AM
Binro_the_Heretic Binro_the_Heretic is offline
Gamer
 
Join Date: Jun 2002
Location: Beulah, Florida
Posts: 81
Default

But it seems like that's just the maximum number of certain types of peep you are allowed to have on the station, does it have anything to do with how many of a certain type of peep comes through the ports?

As I said, there were only five karmaramas on my station and I had six segments open on each deck at that point. There were no plants on the station because I hadn't hired any karmaramas.
  #4  
Old 07-01-2002, 04:55 AM
JSWY JSWY is offline
Gamer
 
Join Date: Jun 2002
Posts: 324
Default

Looks like we need to probe deeper into the code to find the answers. Maybe we could create a Mod where certain peeps come abord after certain facilities are constructed.
  #5  
Old 07-01-2002, 06:42 AM
Pinky the Cow Pinky the Cow is offline
Gamer
 
Join Date: Jun 2002
Location: Moscow, Russia
Posts: 124
Default

Quote:
Originally posted by Binro_the_Heretic
... does it have anything to do with how many of a certain type of peep comes through the ports?
Right after that piece of code there is a part about how often peeps of a certain type are entering the station.

As for your instance of lack of karmaramae check out an another example:
Quote:
;PEEPS
:Peeps100
if
turn > allowpeeps
allowpeeps > 0
then
set grey_max (((room_count + greygood) - duffrooms) / 2)
set targ_max (((room_count + targgood) - duffrooms) / 2)
set siren_max ((((room_count + sirengood) - sirenbad) - duffrooms) / 2)
set male_siren_max ((((room_count + sirengood) - sirenbad) - duffrooms) / 2)
set salt_hog_max ((((room_count + salthoggood) - salthogbad) - duffrooms) / 2)
set gor_max ((((room_count + gorgood) - gorbad) - duffrooms) / 2)
set karmarama_max ((((room_count + karmagood) - karmabad) - duffrooms) / 2)
set turakken_max ((((room_count + turakkengood) - turakkenbad) - duffrooms) / 2)
set zedem_monk_max ((((room_count + zedemgood) - zedembad) - duffrooms) / 2)
:by the way, here is the speed of peeps' spawning
set grey_every (peepola * 6)
set targ_every (peepola * 6)
set siren_every (peepola * 25)
set male_siren_every (peepola * 25)
set salt_hog_every (peepola * 3)
set gor_every (peepola * 11)
set karmarama_every (peepola * 8)
set turakken_every (peepola * 14)
set zedem_monk_every (peepola * 10)
set allowpeeps (turn + 1000)

end

:Peeps200 Here are definitions of numbers affecting different peep_max values
if
turn > peepmods
then
set greygood (((sick_bay_count * 2) + two_star_hotel_count) + curio_gift_shop_count)
set targgood (((satcom_count * 2) + one_star_hotel_count) + holosuite_count)
set sirengood (((love_nest_count * 3) + one_star_hotel_count) + (disco_count * 2))
set sirenbad (temple_count * 6)
set salthoggood ((((recycler_count * 2) + (workshop_count * 2)) + (berth_count * 3)) + (beer_bar_count * 2))
set salthogbad ((cocktail_bar_count * 3) + (slugpartment_count * 3))
set gorgood ((((securitycontrol_count * 2) + (rough_bar_count * 2)) + (fighting_pit_count * 2)) + army_surplus_count)
set gorbad ((music_shop_count * 2) + (cocktail_bar_count * 2))
set karmagood (((music_shop_count * 2) + (disco_count * 2)) + (orophux_count * 2))
set karmabad (((army_surplus_count * 2) + (fighting_pit_count * 2)) + (gunner_count * 2))
:there you go, probably there were too many Security Columns on your station
set turakkengood ((((laboratory_count * 2) + (computer_shop_count * 2)) + holosuite_count) + satcom_count)
set turakkenbad (temple_count * 6)
set zedemgood (((temple_count * 8) + viewing_gallery_count) + father_zeodorus_count)
set zedembad love_nest_count
set duffrooms ((((((collector_count + collector_node_count) + recycler_count) + lavotron_count) + (gunner_count * 2)) + vendor_count) + workshop_count)
__________________
V I S I O N T H I N G, rest in peace.

Last edited by Pinky the Cow; 07-01-2002 at 06:45 AM.
  #6  
Old 07-01-2002, 08:21 AM
Binro_the_Heretic Binro_the_Heretic is offline
Gamer
 
Join Date: Jun 2002
Location: Beulah, Florida
Posts: 81
Default

Aha!

Actually, it was probably a total LACK of music shops and discos since I had only two security columns.

set karmagood (((music_shop_count * 2) + (disco_count * 2)) + (orophux_count * 2))

(and no Oroflex, either)

Thanks for digging through and finding all that. I'll have to use this info to set up "specialty" stations dominated by one particular alien race.
  #7  
Old 07-01-2002, 11:31 AM
Binro_the_Heretic Binro_the_Heretic is offline
Gamer
 
Join Date: Jun 2002
Location: Beulah, Florida
Posts: 81
Default

So, this is how you arrive at your station's "duffroom" value:

((((((A + B) + C) + D) + (E multiplied by 2) + F) + G) = H

A = # of Energy Collectors
B = # of Power Boosters
C = # of Recyclers
D = # of Lavotrons
E = # of Security Columns
F = # of Dine-o-mats
G = # of Factories
H = total duffrom value

Okay, so I start a station with the following:

(1) Energy Collectors
(0) Power Boosters
(0) Recyclers
(1) Lavotrons
(0) Security Columns
(1) Dine-o-mats
(0) Factories

So the initial value of H = 3

In addition to the above hardplans, I also have:

(1) Berth
(1) Comsensor
(1) Port
(1) Recharger

So in the beginning, presuming I construct buildings from all my hardplans and presuming the game rounds half-peeps up to the next whole number, the maximum number of peeps total I can have is:

(2) Greys: (((7 Rooms + 0 Grey Preferred Rooms) - H) divided by 2)

(4) Grouliens ((((7 Rooms + 3 Groulien Preferred Rooms) - 0 Groulien Hated Rooms) - H) divided by 2)

(2) Karmaramas ((((7 Rooms + 0 Karmarama Preferred Rooms) - 0 Karmarama Hated Rooms) - H) divided by 2)

(2) Kasvagorians ((((7 Rooms + 0 Kasvagorian Preferred Rooms) - 0 Kasvagorian Hated Rooms) - H) divided by 2)

(3) Targs (((7 Rooms + 2 Targ Preferred Rooms) - H) divided by 2)

(3) Turrakens ((((7 Rooms + 1 Turraken Preferred Rooms) - 0 Turraken Hated Rooms) - H) divided by 2)

(3) Female Sirens ((((7 Rooms + 0 Siren Preferred Rooms) - 0 Siren Hated Rooms) - H) divided by 2)

(3) Male Sirens ((((7 Rooms + 0 Siren Preferred Rooms) - 0 Siren Hated Rooms) - H) divided by 2)

(3) Zedem ((((7 Rooms + 0 Zedem Preferred Rooms) - 0 Zedem Hated Rooms) - H) divided by 2)

And of course most new buildings are going to raise the potential for some peeps and reduce the potential for others.

The big question: Are residents included in this total?

If I hire three targ to operate my only Comsensor and don't add any targ preferred rooms (Comsensor, Star Motel or Holodrome) will three more targ visitors show up or is three targ the absolute maximum?
  #8  
Old 07-01-2002, 01:05 PM
Binro_the_Heretic Binro_the_Heretic is offline
Gamer
 
Join Date: Jun 2002
Location: Beulah, Florida
Posts: 81
Default

Another important question:

Is a "temple" one single zedem temple in its entirety or does each individual menhir (standing stone) represent one temple each.

In other words, if I hire twelve zedem monks and each one raises its own menhir, does that count as twelve temples or does a single temple consist of the central pillar and twelve menhirs?

The reason I ask is because the maximum number of potential sirens is reduced by the presence of temples. Every temple means eight more potential zedem but also twelve less potential sirens and sirens are the rarest peeps anyway only boarding the station less than 1/8 times as often as salt-hogs. (the most common peeps)

Every love nest adds a potential for six more sirens, but also means one less potential for zedem which are also rare, only boarding the station about 1/6 times as often as salt-hogs.

However, Star Motels & discos increase siren potential without reducing zedem potential and Viewing Galleries & statues of Father Zeodorus increase zedem potential without reducing siren potential.

What I'm striving for is a balance of population.
  #9  
Old 07-01-2002, 02:05 PM
AlphaOmega AlphaOmega is offline
Gamer
 
Join Date: Jul 2001
Location: Vancouver, BC, Can
Posts: 480
Default

Oy, this is starting to get too mathematical!

I believe each stone (code wise anyway) is "one temple", because you cant have more then one temple collection on your biodeck.
  #10  
Old 07-02-2002, 07:13 AM
DMA57361 DMA57361 is offline
Gamer
 
Join Date: Jun 2002
Location: UK
Posts: 514
Talking ERmm....

Alpha - I think you can. You have to "borrow" it from an opponents bio-deck.

I'm sure I did that once and ended up with two. I think.
  #11  
Old 07-02-2002, 09:20 AM
Binro_the_Heretic Binro_the_Heretic is offline
Gamer
 
Join Date: Jun 2002
Location: Beulah, Florida
Posts: 81
Default

I'll see your "oy" and raise you one "vey."

Assuming each menhir counts as one temple, a full complement of twelve monks with one menhir each reduces total siren potential by...YE GODS! 144!!!

Just to negate the effects of the temple would take:

144 Star Motels

or

72 Discos

or

(36) Love Nests which reduces zedem potential by 36 except that each temple has potential for eight zedem so you would still have potential for 60 zedem even after subtracting the ones driven away by the love nests.

Wait! I didn't take into account the fact the number of rooms you build also determines peep potential.

I'll have to work this out on paper and give you the final results.
  #12  
Old 07-02-2002, 09:55 AM
Bomber777 Bomber777 is offline
Gamer
 
Join Date: Jun 2002
Posts: 50
Default

Ok.... I'm getting confused.. This is all about how to attract more peeps.. Right? Or is it about how to get more of a certain peep? Might as well answer both..
The biodeck is a way to get karmaramans and if there are already plants, it improves the rate.

The entertainment deck is to attract mostly anything to your station, and also is a place to start finding peeps for jobs.

The bottom level is where the peeps work and can improve the rate of peeps coming onto the station with certain buildings. Or just the bare requirements will get something like salt hogs and grays and some targs. And in sandbox, all races should start coming to the station.

Don't know if this helps any in your quest to find the coding and get those mathematical figures done.
(I'm starting to sound like VAL)
  #13  
Old 07-02-2002, 01:15 PM
Binro_the_Heretic Binro_the_Heretic is offline
Gamer
 
Join Date: Jun 2002
Location: Beulah, Florida
Posts: 81
Default

I'm talking more about attracting certain types of peep to try and keep a good mix and balance of the population.

Every room adds to the potential number of peeps you can have in your station.

Some types of rooms subtract potential peeps from certain races.

Some rooms are even more attractive to certain types of peeps.

So what I didn't take into consideration was the fact a love nest has the potential to attract 8 sirens (4 male. 4 female)

The room itself add 1 male siren and one female siren to the total potential. Because the room is also a love nest, it adds 3 male sirens and 3 female sirens to the potential.

It also adds 1 to the potential number of zedem but because it is a love nest, it also subtracts 1 from the potential number of zedem.

So the zedem value of a love nest is zero and the siren value of a love nest is 8.

I'm going to try to work out a spreadsheet for calculating a station's peep potential based on the numbers and types of rooms it contains.
  #14  
Old 07-03-2002, 09:29 PM
Pinky the Cow Pinky the Cow is offline
Gamer
 
Join Date: Jun 2002
Location: Moscow, Russia
Posts: 124
Default

Quote:
Originally posted by Binro_the_Heretic
The big question: Are residents included in this total?
Yes,

salt_hog_count is a summary of all salt-hogs on the station while
peepstat race grey allset resident roger is a number of residential greys
__________________
V I S I O N T H I N G, rest in peace.
  #15  
Old 07-03-2002, 09:35 PM
Pinky the Cow Pinky the Cow is offline
Gamer
 
Join Date: Jun 2002
Location: Moscow, Russia
Posts: 124
Default

Quote:
Originally posted by Binro_the_Heretic
Another important question:

Is a "temple" one single zedem temple in its entirety or does each individual menhir (standing stone) represent one temple each.
Do you remember those "hackers" proud of (cheating and) getting a temple in a placeportable crate? I'm positive that inside of it was an ever-to-build central crystal of a temple not a stone. And thus temple_count is a number of temples not stones. If it would be a number of stones though, you'd soon be overrun by monks, eight new monks having come to look at a new stone.
__________________
V I S I O N T H I N G, rest in peace.

Last edited by Pinky the Cow; 07-03-2002 at 09:37 PM.
  #16  
Old 07-03-2002, 09:40 PM
Pinky the Cow Pinky the Cow is offline
Gamer
 
Join Date: Jun 2002
Location: Moscow, Russia
Posts: 124
Wink

Quote:
Originally posted by Bomber777
The biodeck is a way to get karmaramans and if there are already plants, it improves the rate.
You wouldn't happen to have any proof, would you?
__________________
V I S I O N T H I N G, rest in peace.
  #17  
Old 07-20-2002, 07:13 AM
kool_kats_rule kool_kats_rule is offline
Gamer
 
Join Date: Jul 2002
Location: In the shadows
Posts: 212
Lightbulb

Aren't menhirs what you get in Asterix?

All this code is making my brain ache. I think I'll leave now.
  #18  
Old 07-20-2002, 03:59 PM
SkrasherSmasher SkrasherSmasher is offline
Gamer
 
Join Date: Jul 2002
Location: New York State
Posts: 446
Default

Yeah, this makes my head hurt too, but thats just because I have a *bleep*ing migrane. Is there someplace where I can find exactly what types of buildings attract a certain type of peep, along with which send them away?
__________________
"I stepped out, I did not step down."- Volrath The Fallen
  #19  
Old 07-20-2002, 11:54 PM
Pinky the Cow Pinky the Cow is offline
Gamer
 
Join Date: Jun 2002
Location: Moscow, Russia
Posts: 124
Wink

Look for a mish.txt and peeps*.txt in the mission folder. You see anyone can make anything he wants for example

Quote:
set zedem_monk_max (love_nest_count * 50)
__________________
V I S I O N T H I N G, rest in peace.
  #20  
Old 07-21-2002, 06:02 PM
SkrasherSmasher SkrasherSmasher is offline
Gamer
 
Join Date: Jul 2002
Location: New York State
Posts: 446
Default

Oh no, invasion of the monks with 'questionable practices'
__________________
"I stepped out, I did not step down."- Volrath The Fallen
  #21  
Old 07-23-2002, 03:29 AM
DoctorX DoctorX is offline
New Player
 
Join Date: Jul 2002
Location: Sydney, Australia
Posts: 17
Smile

I managed once to complete bring the number of Peeps coming aboard on the first single player mission to zero just by hiring every single Peep aboard - so I think the number of Residents to Visitors also plays a part in deciding who and how many come aboard.
__________________
DoctorX
RTSC
  #22  
Old 07-23-2002, 09:58 PM
AlphaOmega AlphaOmega is offline
Gamer
 
Join Date: Jul 2001
Location: Vancouver, BC, Can
Posts: 480
Default

Hello DoctorX, welcome to our forum, or Sector-Zeta-Omicron Salty-Arm-6 as we like to call it for short.

Nice website by the way! Good to see a nice solid fansite out there!
  #23  
Old 07-24-2002, 02:23 AM
DoctorX DoctorX is offline
New Player
 
Join Date: Jul 2002
Location: Sydney, Australia
Posts: 17
Talking

Why, thanks! Its a fine, upstanding Station you have here.

Yeah, my "Rule of Thumb Guide" to Startopia is just getting bigger and bigger. If it keeps growing at this rate I'll have to call it a Neurotic Bean Counters Guide instead... :P
__________________
DoctorX
RTSC
  #24  
Old 07-24-2002, 04:17 AM
MunkeeChum MunkeeChum is offline
Permanent Vacation
 
Join Date: Jun 2002
Location: up your alley
Posts: 962
Default

It is a nice site

Will you be putting Warcraft III stuff up soon? Its a damn good game.



.
.
.
.
.
But not as good as Startopia of course.

Phew, that could have gotten ugly.
  #25  
Old 07-25-2002, 01:43 AM
DoctorX DoctorX is offline
New Player
 
Join Date: Jul 2002
Location: Sydney, Australia
Posts: 17
Default

Hardly. Munkee, hardly. Yeah I keep hearing okay things about Warcraft III, so I guess I'll have to suss it out. If Blizzard's gone and improved their unit AI's and game mechanics and tamed those spotty hordes on B.Net then it might just be worth a quick whirl.

Oh, and of course, no where near as fantasical as Startopia etc etc etc. Although I hear a lot of jolly fine ideas had to be dropped at the last minute to get it out, alas.
__________________
DoctorX
RTSC
 

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 12:50 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.