![]() |
|
|
#21 | |
|
tricoro
Join Date: Jan. 20th, 2008
Posts: 4,722
|
Pupae are baby Skaarj, even LA says it.
__________________
UnrealSP.org Staff Member Sky Town Reduxx Xidia Gold Unreal Beta Guide g59 Quote:
|
|
|
|
|
|
|
#22 |
|
LA is a Good Read
just thought i would say that
__________________
Guilty of waiting, we bond together born to suffer, only those ill fated eyes, liberate our minds. Behold the sign you are killing us. |
|
|
|
|
|
|
#23 |
|
lol @ tag
This whole game universe is incredibly absurd. But hey, it's unreal.
__________________
|
|
|
|
|
|
|
#24 |
|
"...All these Skaarj have to come from somewhere, though. Halfway through the game, the player meets the Pupae form of the Skaarj species. A relatively small (about 6 feet long, but only a foot or so tall) insect-like creature that behaves almost more like a spider than a Skaarj, though it still possesses the leap attack, the tusks, and the general face-shape..."
^this is how L.A. describes the pupae.still open for discussions imo. ![]() EDIT: or does the quote say..pupae is the childhood stage of a skaarj ? Last edited by Exus Tecius; 20th Mar 2009 at 03:13 PM. |
|
|
|
|
|
|
#25 |
|
It's all pretty vague and open to interpretation. The current "official" word on it may not necessarily be trusted, depending on your point of view. But I think the general consensus is Pupae=baby Skaarj. Skaarj have lifecycles like bugs, ect. Drones and Queens look completely different than each other, like bees or termites.
I don't think it really matters anyway. Skaarj are generic sci-fi monsters that are ripoffs of Predators and Aliens. Last edited by Mister_Prophet; 20th Mar 2009 at 04:35 PM. |
|
|
|
|
|
|
#26 |
|
tbh...that`s the main reason i opened this thread.can it be the that Epic was inspired by the well known movies ? skaarj/pupae and queen are imported.
Last edited by Exus Tecius; 20th Mar 2009 at 04:47 PM. |
|
|
|
|
|
|
#27 |
|
Why not just make up the history of the species for yourself? Much more interesting than following any "official" explanations. Get creative.
Edit: Funny that you're asking these types of questions, exus.
__________________
Last edited by NeoNite; 20th Mar 2009 at 04:58 PM. |
|
|
|
|
|
|
#28 |
![]() once i make a serious business thread in my unreal life neo.dont break my parade lol. EDIT: pupae are the monsters i hate at most..i even just jump over them. Last edited by Exus Tecius; 20th Mar 2009 at 05:25 PM. |
|
|
|
|
|
|
#29 |
|
I know, don't worry. I just have these flashbacks of 2000-2001 reading this thread.
__________________
|
|
|
|
|
|
|
#30 |
|
Banned
Join Date: Jan. 22nd, 2008
Posts: 769
|
Pupae are foot-stools
Skaarj are toilets Queens are for shagging and warlords get my paper Titans?... I need a new game room round back here some rocks. |
|
|
|
|
|
#31 |
|
Registered User
Join Date: May. 27th, 2005
Posts: 670
|
I base it off from the Scripts in the monsters because it is the way the programmers followed the whole story line they based the game of. I'm not sure if there was an official story of the Unreal game released by Epic or not but from what I've heard it is pretty accurate by how the script in them works.
This is the code in the main Skaarj class and the Attitude towards its kind, Nali and others: Code:
function eAttitude AttitudeToCreature(Pawn Other)
{
if ( Other.IsA('Skaarj') )
{
if ( Other.IsA('SkaarjBerserker') )
return ATTITUDE_Ignore;
else
return ATTITUDE_Friendly;
}
else if ( Other.IsA('Pupae') )
return ATTITUDE_Friendly;
else if ( Other.IsA('Nali') )
return ATTITUDE_Hate;
else if ( Other.IsA('WarLord') || Other.IsA('Queen') )
return ATTITUDE_Friendly;
else
return ATTITUDE_Ignore;
}
this detemines what the SkaarjBerserker does and it looks like they attack anything -even themselves- but not the Pupaes: Code:
function eAttitude AttitudeToCreature(Pawn Other)
{
if ( Other.IsA('ScriptedPawn') && !Other.IsA('Pupae') )
return ATTITUDE_Hate;
else
return ATTITUDE_Ignore;
}
The Queens don't attack skaarjs and pupaes. She attacks any other creatures including Warlords and her own type. She really hates the Nalis and SkaarjBerserkers and with no doubt will attack them: Code:
function eAttitude AttitudeToCreature(Pawn Other)
{
if ( Other.IsA('Skaarj') )
{
if ( Other.IsA('SkaarjBerserker') )
return ATTITUDE_Hate;
else
return ATTITUDE_Friendly;
}
else if ( Other.IsA('Pupae') )
return ATTITUDE_Friendly;
else if ( Other.IsA('Nali') )
return ATTITUDE_Hate;
else
return ATTITUDE_Ignore;
}
The Pupaes are friendly with the Skaarjs, Queens and Warlords but will attack SkaarjBerserker if they are attacked by them. They will attack any other creature for sure: Code:
function eAttitude AttitudeToCreature(Pawn Other)
{
if ( Other.IsA('Pupae') )
return ATTITUDE_Friendly;
else if ( Other.IsA('Skaarj') )
{
if ( Other.IsA('SkaarjBerserker') )
return ATTITUDE_Ignore;
else
return ATTITUDE_Friendly;
}
else if ( Other.IsA('WarLord') || Other.IsA('Queen') )
return ATTITUDE_Friendly;
else if ( Other.IsA('ScriptedPawn') )
return ATTITUDE_Hate;
}
There is no attitude code for the Warlords meaning that they will attack anything that attacks them including pupaes. It looks like they have no respect towards their own race making them the meanest of all skaarjs. From what I see in the scripts I conclude that the Pupaes are actually skaarj babies and can be eaten by the mean Warlords if they're not respectful to them lol. Also, it looks like the SkaarjBerserkers play a big role in their race and are hated by their own kind and can even be attacked by the pupaes as well. This makes me wonder if the story line on the skaarjs matches with what is scripted in their classes and if it is as accurate as it seems. |
|
|
|
|
|
#32 | ||
|
tricoro
Join Date: Jan. 20th, 2008
Posts: 4,722
|
Quote:
Put "Mutilating" in the Warlord's Orders. It was supposed to be used in this deleted part of Nyleve which I have recreated; check here.
__________________
UnrealSP.org Staff Member Sky Town Reduxx Xidia Gold Unreal Beta Guide g59 Quote:
Last edited by UBerserker; 21st Mar 2009 at 05:45 AM. |
||
|
|
|
|
|
#33 |
|
Exus, you're looking at the wrong article.
http://liandri.beyondunreal.com/Pupa And note that "Pupa" is the singular, not "Pupae"! So fix that, War Master
|
|
|
|
|
|
|
#34 | |
|
tricoro
Join Date: Jan. 20th, 2008
Posts: 4,722
|
Where the hell it is said that Pupa is the singular? Only Pupae is the official name.
__________________
UnrealSP.org Staff Member Sky Town Reduxx Xidia Gold Unreal Beta Guide g59 Quote:
|
|
|
|
|
|
|
#35 | |
|
Quote:
|
||
|
|
|
|
|
#36 | |
|
Quote:
AH wait you didn't put it for download there....sorry...so its the instructions thread and people should follow that if they want it to get to work...btw the alarm points were already set for me no need to alter them.. Last edited by Leo(T.C.K.); 21st Mar 2009 at 12:38 PM. |
||
|
|
|
|
|
#37 |
|
-ae is an ending in English. It is used only with plural forms when talking about species and a few other things, usually derived from Latin. The singular forms of these words end with the letter -a.
|
|
|
|
|
|
|
#38 |
|
That's bull****. Why is the classname named pupae then? ANd why does it say killed by pupae and not pupa?
|
|
|
|
|
|
|
#39 | ||
|
tricoro
Join Date: Jan. 20th, 2008
Posts: 4,722
|
Quote:
It's only "Pupae".
__________________
UnrealSP.org Staff Member Sky Town Reduxx Xidia Gold Unreal Beta Guide g59 Quote:
Last edited by UBerserker; 21st Mar 2009 at 05:54 PM. |
||
|
|
|
|
|
#40 | |
|
Quote:
That said, there's lots of Pupae, so for you to be killed by one you generally have to suck or be weak.
|
||
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|