Unreal1 NPC bots that work in ut99

Tutorials and discussions about Mapping - Introduce your own ones!
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Unreal1 NPC bots that work in ut99

Post by EvilGrins »

So as to the actual NPC characters I discussed at the start of this thread, there doesn't appear to be one for the SkaarjPlayer... which naturally, my great love of Skaarj being what it is, irks me.

Does anyone know of such a thing?
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: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Unreal1 NPC bots that work in ut99

Post by OjitroC »

EvilGrins wrote: Fri Jul 31, 2020 7:59 am So as to the actual NPC characters I discussed at the start of this thread, there doesn't appear to be one for the SkaarjPlayer... which naturally, my great love of Skaarj being what it is, irks me.

Does anyone know of such a thing?
You can 'make' one yourself - just subclass the UnrealI.SkaarjPlayerBot and add in the code from any of the NPC characters

Code: Select all

Var() String MyName; 

Function PostBeginPlay() 
{ 
Super.PostBeginPlay(); 
PlayerReplicationInfo.PlayerName = MyName; 
} 

User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Unreal1 NPC bots that work in ut99

Post by EvilGrins »

OjitroC wrote: Fri Jul 31, 2020 11:16 amYou can 'make' one yourself
Sure but that'd just be for a map, I'm talking one that has its own .u file so anyone can use it on any map... like those others are setup.

I don't know how to make a .u file. Do you?
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
esnesi
Godlike
Posts: 1018
Joined: Mon Aug 31, 2015 12:58 pm
Personal rank: Dialed in.

Re: Unreal1 NPC bots that work in ut99

Post by esnesi »

That way they can be hosted on servers as skins?
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Unreal1 NPC bots that work in ut99

Post by OjitroC »

esnesi wrote: Fri Jul 31, 2020 6:06 pm That way they can be hosted on servers as skins?
It would be a bot (model) rather than a skin per se.
User avatar
esnesi
Godlike
Posts: 1018
Joined: Mon Aug 31, 2015 12:58 pm
Personal rank: Dialed in.

Re: Unreal1 NPC bots that work in ut99

Post by esnesi »

OjitroC wrote: Fri Jul 31, 2020 6:10 pm It would be a bot (model) rather than a skin per se.
Can't imagine there arn't any ones that can be used on servers :/
User avatar
OjitroC
Godlike
Posts: 3605
Joined: Sat Sep 12, 2015 8:46 pm

Re: Unreal1 NPC bots that work in ut99

Post by OjitroC »

esnesi wrote: Fri Jul 31, 2020 9:33 pm Can't imagine there arn't any ones that can be used on servers :/
I expect you can but they can't be assigned to a team and so will be on the Gold Team.
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Unreal1 NPC bots that work in ut99

Post by EvilGrins »

esnesi wrote: Fri Jul 31, 2020 6:06 pmThat way they can be hosted on servers as skins?
No, this way they can be hosted on servers as extra players that're setup for specific maps.
OjitroC wrote: Fri Jul 31, 2020 11:21 pmI expect you can but they can't be assigned to a team and so will be on the Gold Team.
I was thinking straight Deathmatch games, no teams.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
Post Reply