New monsters

Discussions about everything else
User avatar
OjitroC
Godlike
Posts: 3601
Joined: Sat Sep 12, 2015 8:46 pm

Re: New monsters

Post by OjitroC »

EvilGrins wrote: Mon Nov 09, 2020 3:41 am Back when Gauntlet first came out I asked a lot of questions about it, but I never actually played. To this day I still haven't but I have been finally playing against the monsters in it.
Those monsters are mostly from U4e as far as I can tell?

I vaguely remember comparing the U4e and Gauntlet versions and didn't find any significant differences in their default properties. It doesn't matter much to me but they do spam a lot of errors in the log.
User avatar
EvilGrins
Godlike
Posts: 9657
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: New monsters

Post by EvilGrins »

OjitroC wrote: Mon Nov 09, 2020 1:12 pmThose monsters are mostly from U4e as far as I can tell?
I never fully went through U4E's monsters, mostly only checked their unusual bots with their built-in weapons.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
OjitroC
Godlike
Posts: 3601
Joined: Sat Sep 12, 2015 8:46 pm

Re: New monsters

Post by OjitroC »

EvilGrins wrote: Mon Nov 09, 2020 7:55 pm I never fully went through U4E's monsters ..
If you do, check out U4ePawns (which have Hank and Angel), U4eTC (where the Gauntlet Scripted Pawns are taken from) and U4eMenu (this has a Zombie).
User avatar
EvilGrins
Godlike
Posts: 9657
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: New monsters

Post by EvilGrins »

PetSkaarj isn't significantly different than any other kind of Skaarj. I compared its properties side-by-side with the SkaarjWarrior and they are identical.

Although, it doesn't attack players. Were it not for the obvious fact it's a Skaarj it's about as aggressive as a NaliCow. All it really seems to do is walk around and not much care about anything else.
Attachments
PetSkaarj.zip
(2.66 KiB) Downloaded 13 times
Shot0001.png
Shot0000.png
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
OjitroC
Godlike
Posts: 3601
Joined: Sat Sep 12, 2015 8:46 pm

Re: New monsters

Post by OjitroC »

EvilGrins wrote: Wed Dec 23, 2020 10:00 am Although, it doesn't attack players. Were it not for the obvious fact it's a Skaarj it's about as aggressive as a NaliCow. All it really seems to do is walk around and not much care about anything else.
It's coded to be friendly to Players and, I think, should attack bots that attack a Player - it ignores ScriptedPawns.
User avatar
EvilGrins
Godlike
Posts: 9657
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: New monsters

Post by EvilGrins »

OjitroC wrote: Wed Dec 23, 2020 12:27 pmshould attack bots that attack a Player
There's some other monsters in this thread that do that to.

Seems ideal for anyone that doesn't like bots, setup a creature factory or something so new PetSkaarj spawn back into the game after the existing ones are killed.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
papercoffee
Godlike
Posts: 10441
Joined: Wed Jul 15, 2009 11:36 am
Personal rank: coffee addicted !!!
Location: Cologne, the city with the big cathedral.
Contact:

Re: New monsters

Post by papercoffee »

show the AI section.
User avatar
EvilGrins
Godlike
Posts: 9657
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: New monsters

Post by EvilGrins »

papercoffee wrote: Sat Dec 26, 2020 8:47 pm show the AI section.
Attachments
zClip0004.png
zClip0004.png (9.18 KiB) Viewed 708 times
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
papercoffee
Godlike
Posts: 10441
Joined: Wed Jul 15, 2009 11:36 am
Personal rank: coffee addicted !!!
Location: Cologne, the city with the big cathedral.
Contact:

Re: New monsters

Post by papercoffee »

Strange... ok and under Combat?

Default is this
Skaarj.png
User avatar
OjitroC
Godlike
Posts: 3601
Joined: Sat Sep 12, 2015 8:46 pm

Re: New monsters

Post by OjitroC »

papercoffee wrote: Sat Dec 26, 2020 11:37 pm Strange... ok and under Combat?
The PetSkaarj's Attitude is set in the code - this is the first part of it

Code: Select all

function eAttitude AttitudeToCreature(Pawn Other)
{
    if ( Other.IsA('PlayerPawn') )
          return ATTITUDE_Friendly;
    else if ( Other.IsA('ScriptedPawn') )
    {   if ( Other.IsA('PetSkaarj') )
        return ATTITUDE_Ignore;
    }   
    return ATTITUDE_Hate;
}
I've only tried it out by summoning it and it ignores ScriptedPawns (whether or not they attack the Player) - actually no idea what its attitude is to bots.
User avatar
EvilGrins
Godlike
Posts: 9657
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: New monsters

Post by EvilGrins »

OjitroC wrote: Sun Dec 27, 2020 12:07 amI've only tried it out by summoning it and it ignores ScriptedPawns (whether or not they attack the Player) - actually no idea what its attitude is to bots.
I edited 1 directly onto a map and tried to get it to fight me... with no luck.

Maybe it is time to use the dreaded MH map of testing, "first made" by HE WHO MUST NOT BE NAMED.
papercoffee wrote: Sat Dec 26, 2020 11:37 pmStrange... ok and under Combat?
Attachments
Clip0006.png
Clip0006.png (11.75 KiB) Viewed 693 times
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
OjitroC
Godlike
Posts: 3601
Joined: Sat Sep 12, 2015 8:46 pm

Re: New monsters

Post by OjitroC »

EvilGrins wrote: Sun Dec 27, 2020 1:46 am I edited 1 directly onto a map and tried to get it to fight me... with no luck.
No, it won't - as indicated in the code snippet in my previous post - as a player you are a PlayerPawn, so the SkaarjPet's attitude to you is Friendly - the code overrides the default properties and so alters the AttitudeToPlayer given in DefaultProperties->AI as ATTITUDE_Hate to an AttitudeToPlayer of ATTITUDE_Friendly in the game.
User avatar
EvilGrins
Godlike
Posts: 9657
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: New monsters

Post by EvilGrins »

EvilGrins wrote: Sun Dec 27, 2020 1:46 am
OjitroC wrote: Sun Dec 27, 2020 12:07 amI've only tried it out by summoning it and it ignores ScriptedPawns (whether or not they attack the Player) - actually no idea what its attitude is to bots.
Maybe it is time to use the dreaded MH map of testing, "first made" by HE WHO MUST NOT BE NAMED.
So, I tested them in MH... PetSkaarj completely ignored me and went to war on the bots I was with.

So, yeah, they will definitely attack bots but not players.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
Gustavo6046
Godlike
Posts: 1462
Joined: Mon Jun 01, 2015 7:08 pm
Personal rank: Resident Wallaby
Location: Porto Alegre, Brazil
Contact:

Re: New monsters

Post by Gustavo6046 »

PetSkaarj is weird. Maybe the name of the class hints at something? They might be supposed to be... pets... of some sort?... so I suppose there should be a way to make them not fight against bots either.
"Everyone is an idea man. Everybody thinks they have a revolutionary new game concept that no one else has ever thought of. Having cool ideas will rarely get you anywhere in the games industry. You have to be able to implement your ideas or provide some useful skill. Never join a project whose idea man or leader has no obvious development skills. Never join a project that only has a web designer. You have your own ideas. Focus on them carefully and in small chunks and you will be able to develop cool projects."

Weapon of Destruction
User avatar
OjitroC
Godlike
Posts: 3601
Joined: Sat Sep 12, 2015 8:46 pm

Re: New monsters

Post by OjitroC »

Gustavo6046 wrote: Tue Dec 29, 2020 2:32 pm PetSkaarj is weird. Maybe the name of the class hints at something? They might be supposed to be... pets... of some sort?... so I suppose there should be a way to make them not fight against bots either.
Yes, would be interested to know where this was used (that is, what map(s) it was in and for what purpose it was used) - I presume it would be easy enough to code a subclass of it so that it would be friendly to bots as well, though not sure what the point of that would be?
Post Reply