Post tutorial Report RSS The Dinosaur List

Add the species you want and remove those you don't want with this tutorial.

Posted by on - Basic Other

JPOG: The Forgotten comes with 14 new dinosaur species in the base mod, with 12 more exercise-exclusive species which are unavailable if you play the game normally. Among this list are dinosaurs such as Indominus rex, which many players might be interested to build a park with. Unfortunately, the game only supports a maximum of 40 dinosaur species with functional AI at a time.

v1.21


This tutorial will allow you to select your own species from the mod to build your parks with. To see every species available in the mod, check out the bestiary.


Below is a list of the dinosaurs available in the mod, sorted by location.

// JUDITH RIVER A

  • Albertosaurus "Alberto"
  • Alioramus "Alio"
  • Ankylosaurus "Anky"
  • Crichtonsaurus "Crich"
  • Pachycephalosaurus "Pachy"
  • Stygimoloch "Stygi"

// JUDITH RIVER B

  • Corythosaurus "Cory"
  • Styracosaurus "Styrac"
  • Tyrannosaurus "Trex" < male
  • Tyrannosaurus "TrexF" < female

// HELL CREEK A

  • Acrocanthosaurus "Acro"
  • Chasmosaurus "Chasmo"
  • Parasaurolophus "Para"
  • Torosaurus "Toro"

// HELL CREEK B

  • Edmontosaurus "Edmont"
  • Maiasaura "Maias"
  • Pachycephalosaurus "Pachy"
  • Triceratops "Tricera"

// MORRISON FORMATION A

  • Ceratosaurus "Cerato"
  • Compsognathus "Compy"
  • Dryosaurus "Dryo"
  • Irritator "Irritat"
  • Rajasaurus "Raja"
  • Stegosaurus "Steg"
  • Thescelosaurus "Thes"
  • Wuerhosaurus "Wuer"

// MORRISON FORMATION B

  • Apatosaurus "Apato"
  • Brachiosaurus "Brach"
  • Camarasaurus "Camara"
  • Dilophosaurus "Dilopho"
  • Diplodocus "Diplo"
  • Guanlong "Guanlong"
  • Supersaurus "Super"

// CHENINI FORMATION

  • Baryonyx "Bary"
  • Carcharodontosaurus "Carcha"
  • Giganotosaurus "Giga"
  • Iguanodon "Iguan"
  • Ouranosaurus "Ourano"
  • Spinosaurus "Spino"
  • Tenontosaurus "Tenon"

// TENDAGURU FORMATION

  • Allosaurus "Allo"
  • Brachiosaurus "Brach"
  • Indominus "Irex"
  • Kentrosaurus "Kentro"
  • Panoplosaurus "Panop"
  • Tuojiangosaurus "Tuoj"
  • Yangchuanosaurus "Yangchu"

// FLAMING CLIFFS

  • Bambiraptor "Bambi"
  • Deinonychus "Dein"
  • Gallimimus "Galli"
  • Homalocephale "Homalo"
  • Ornithomimus "Ornit"
  • Velociraptor "Raptor"

v1.21


To modify the dinosaurs you can get in the game, there are two files which should be edited. These are the "Dinolist.ini" and "Fslhunt.ini". These are present in the 'Data' folder; if you don't know what that is, then it's a miracle you installed the mod successfully.

Copy and paste "Dinolist.ini" and "Fslhunt.ini" to the desktop for editing.

Begin by opening up "Dinolist.ini" in a text editing program such as Notepad. Let's say I want to add Tuojiangosaurus to my game. I'll refer to the list above for its codename which turns out to be "Tuoj".

DinoList = {
    allo,
    yangchu,
    spino,
    bary,
    trex,
    galli,
    ornit,
    raptor,
    dein,
    cerato,
    dilopho,
    acro,
    alberto,
    alio,
    steg,
    wuer,
    anky,
    para,
    tricera,
    brach,
    apato,
    diplo,
    homalo,
    edmont,
    maias,
    cory,
    pachy,
    styrac,
    toro,
    chasmo,
    dryo,
    thes,
    kentro,
    panop,
    ourano,
    iguan,
    tenon,
    carcha,
    camara
};
I will insert "Tuoj" into the file as such. 
    dryo,
    thes,
    kentro,
    tuoj,
    panop,
    ourano,

Ensure that there are a maximum of 40 dinosaur species in the file; any more and the game will crash. Now save the file.


Moving on to "Fslhunt.ini", the Tuojiangosaurus should be located in the Tendaguru Beds. Open up the "Fslhunt.ini" and scroll to the appropriate dig site.

// TENDEGARU BEDS ---------------------------------------------------------------

HuntingGround[TendaguruBeds]
{
	title		= $FossilHunt_TendaguruBeds_Title;
	period		= Jurassic;
	location	= Africa;
	matlib		= "dinos_tendaguru";

	reqdinos	= { brach, allo, kentro, panop, yangchu };
	linkedtoset = 1;	// Linked to an unlocking set

	cost		= 0;
	gold		= 8;

//	position	= {124, 128};
	position	= {296, 162};
	texture		= "FslHunt_fossil2";

	DigSite[river1]
	{
		type			= plains;
		texture			= "FslHunt_DigSite_1";
		position		= {168, 53};
		title			= $FossilHunt_DigSite_River;
		teams			= 2;
		digtime			= 1.0;
	}
	DigSite[river2]
	{
		type			= plains;
		texture			= "FslHunt_DigSite_2";
		position		= {213, 149};
		title			= $FossilHunt_DigSite_River;
		teams			= 3;
		digtime			= 1.0;
	}
	DigSite[plains]
	{
		type			= mountain;
		texture			= "FslHunt_DigSite_3";
		position		= {67, 211};
		title			= $FossilHunt_DigSite_Plains;
		teams			= 4;
		digtime			= 1.0;
	}
}

What you need to do is insert "Tuoj" into this line:

	reqdinos	= { brach, allo, kentro, panop, yangchu };

It should end up looking like this:

	reqdinos	= { brach, allo, kentro, panop, yangchu, tuoj };

Save the file and paste the two files back into the 'Data' folder. If you've done everything correctly, the game should start up without crashing and once you start a new game, you will see your new dinosaur.

Post comment Comments  (0 - 50 of 146)
kornygerm
kornygerm - - 7 comments

so if i want the trex skin of the female, i have to put her code in both the dinolist and the fslhunt?

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

If you want her alongside the male, yes. Otherwise, replace Trex with TrexF.

Reply Good karma+1 vote
JunYuan
JunYuan - - 4 comments

How do i keep trexF as the default t-rex for my park?

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

Did you not read the FAQ?

Reply Good karma+2 votes
JunYuan
JunYuan - - 4 comments

Yes i did, solved now. pardon my ignorance.

Reply Good karma Bad karma+1 vote
Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Gopokes91
Gopokes91 - - 1 comments

Do you delete the old save and paste in the new one?

Reply Good karma Bad karma+1 vote
Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Guest
Guest - - 689,572 comments

I put the Indominus and Deinonychus in the Dinolist and Fossil Hunt file. But every time I try to hunt in that dig site, as soon as I select to dig there the game crashes.

Reply Good karma Bad karma+1 vote
blueberriecreeper
blueberriecreeper - - 1 comments

Nevermind, I figured out my mistake. I should have not put a comma after I added the Indominus and Deinonychus to the Fossil Hunt file.

Reply Good karma Bad karma+1 vote
pranataandri
pranataandri - - 1 comments

Need help, why everytime i insert 1 new dino (exp : irex) on dinolist and fslhunt file, there's no such dinosaur on my game. neither i play a new game nor i load my existing game

Ps : im a noob :)

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

Check for errors when you edit both Dinolist.ini and Fslhunt.ini. If both are correctly edited, start a new game and it will show up.

Reply Good karma+1 vote
brett_townley
brett_townley - - 3 comments

I tried putting in the Irex into the dinolist and fossil hunt file but when i select the digsite it's in the game crashes

Reply Good karma Bad karma+1 vote
brett_townley
brett_townley - - 3 comments

How do you put the Irex into the game, whenever i follow the instructions the game crashes when i select the dig site that the Irex is in

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

Patch the game up to v1.21; if already done, chances are you have misplaced a comma, used uppercase letters or screwed the format up.

Reply Good karma+1 vote
Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

mariamiller78
mariamiller78 - - 3 comments

Is there a Deinonychus in this mod? If so, how would I get it?
(I'm assuming that it's the same process as the Indominus.)

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

Please read the FAQ. Deinonychus is accessible by default.

Reply Good karma+1 vote
Guest
Guest - - 689,572 comments

Sorry I did not mean to be unnecessarily rude before. I seen the patch notes had only said a extra 3 dinosaurs which mostly I didn't want them lol. I was wondering why there was no Irex.ini anywhere haha. Sorry about that. Just downloaded v1.22 and can see the .ini. Thank you for the advice echogreen. Just got frustrated trying every possible way to get it to work for a few hours sorry lol. Amazing that your bringing life back to this epic game. Keep up the great work and thank you very much :D

Reply Good karma Bad karma+1 vote
Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

pandaomran
pandaomran - - 2 comments

i did everything right but when i go to the hatchery to see I-rex my game crashs so please help me.edit:I-rex has 86% DNA and i download the v1.22 of this mod

Reply Good karma Bad karma+1 vote
pandaomran
pandaomran - - 2 comments

nvm it worked

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

Out of curiosity, did you put the Indominus in the wrong dig site?

Reply Good karma+1 vote
Guest
Guest - - 689,572 comments

EchoGreen can you help me? please i want the indominus to attack like in indominus vs all part 1 in youtube bcoz the irex in my game wont duel until death instead she flees after several hits by the way im Aleczander Estrella thanks if you know what i mean

Reply Good karma Bad karma0 votes
EchoGreen Author
EchoGreen - - 312 comments

It isn't possible to make a suicidally stupid dinosaur that never panics.

Reply Good karma+1 vote
Guest
Guest - - 689,572 comments

How to put trexM and trexF together??? Please help.... Thanks

Reply Good karma Bad karma0 votes
EchoGreen Author
EchoGreen - - 312 comments

Did you even read the tutorial to begin with?

Reply Good karma+1 vote
Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Casers979
Casers979 - - 1 comments

I am trying to add certain dinos to Jurassic Classic and The Lost World. How do I add or remove dinosaur species from the missions and exercises? Is there a dino list somewhere for each exercise?

Reply Good karma Bad karma+1 vote
johnbonniebonbon
johnbonniebonbon - - 3 comments

Is the code for Indominus "irex"?

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

As stated above, yes.

Reply Good karma+1 vote
Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Guest
Guest - - 689,572 comments

quando coloquei em FslHunt e dinolist coloquei o irex mais quando vou criar um novo parque carega e no final ele sai do jogo como rezouvo isso

Reply Good karma Bad karma0 votes
EchoGreen Author
EchoGreen - - 312 comments

I don't speak Portuguese, so I may misunderstand your question.

Use the latest version of the mod. It is bug free.

Reply Good karma+1 vote
Guest
Guest - - 689,572 comments

What is the female Rex code trexf?

Reply Good karma Bad karma0 votes
EchoGreen Author
EchoGreen - - 312 comments

You are correct. It is TrexF, as stated above.

Reply Good karma+1 vote
kingeltrut
kingeltrut - - 4 comments

so do i put giga in dinolist?

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

That is what the tutorial says, yes.

Reply Good karma+2 votes
kingeltrut
kingeltrut - - 4 comments

under what can you just put in somewhere random or does it have to be under or over a dinosaur on the dinolist?

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

Doesn't matter where it goes.

Reply Good karma+1 vote
kingeltrut
kingeltrut - - 4 comments

i put it under carcha and now my game crashes when i go to make a new park but i can only play existing parks that i have

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

1) check for spelling mistakes, missing commas etc and 2) the game supports a maximum of 40 species; count them and remove a species if necessary. Any species will do.

Reply Good karma+1 vote
kingeltrut
kingeltrut - - 4 comments

hx now i have raja giga irritator and more your the best!

Reply Good karma Bad karma+1 vote
Guest
Guest - - 689,572 comments

This comment is currently awaiting admin approval, join now to view.

Polar!s
Polar!s - - 6 comments

I need help. I removed Alio and Wuer to make room for other dinosaurs i want (i checked no commas or caps everything correct), but whenever i start a new game, select an excercise or mission, or select Site B, my game crashes. Am i not allowed to take them away, or is somethin else required in order to remove them without crashing?

And yes i did replace the Sky files with my backup as said in the faq. But it still crashes!

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

If you can access the main menu, check for incorrect spelling in the files edited.

If rhe game crashes before the main menu, you have more than 40 species. Remove some.

Reply Good karma+2 votes
Polar!s
Polar!s - - 6 comments

I know that, and i will do a double check. I read the README file, and it said i have to copy paste into the program files, but i installed the game into a new folder so i could access cheats. Does the game also need to be installed into Program Files?

Reply Good karma Bad karma+1 vote
Polar!s
Polar!s - - 6 comments

Ok i will do a double check

I read the README file from the mod, and it mentioned Program Files

Must the game also be installed into Program Files, because i installed it into a new folder for cheats (I'm using a Windows 7 if that'll help)

Reply Good karma Bad karma+1 vote
Polar!s
Polar!s - - 6 comments

Ok i did a double check and there are no errors, and i didn't add any dinos, only removed Alio and Wuer

Reply Good karma Bad karma+1 vote
Polar!s
Polar!s - - 6 comments

Must there be a comma in front of the dinosaur before the bracket, or no? Because i don't have one in front of it since in the tutorial it didn't

Reply Good karma Bad karma+1 vote
Polar!s
Polar!s - - 6 comments

I tried reinstalling, not removing any dinos, it crashed. I tried replacing the Sky dds files. It crashed. I removed some dinos. It crashed. WTF AM I DOING WRONG?

Reply Good karma Bad karma+1 vote
EchoGreen Author
EchoGreen - - 312 comments

Even the basic mod doesn't work? If so, the issue may be that your computer cannot handle the high graphics. Try replacing the terrain folder with default / running the game on medium model quality.

Reply Good karma+1 vote
Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: