SUBSIM Radio Room Forums



SUBSIM: The Web's #1 resource for all submarine & naval simulations since 1997

Go Back   SUBSIM Radio Room Forums > Silent Hunter 3 - 4 - 5 > Silent Hunter 5
Forget password? Reset here

Reply
 
Thread Tools Display Modes
Old 04-23-10, 04:21 AM   #1
Nisgeis
Ocean Warrior
 
Join Date: Jan 2008
Posts: 2,909
Downloads: 77
Uploads: 11
Default Has anyone seen any star shells?

Has anyone seen any escort fire star shells? In SH3, they were fired and they illuminated the surrounding area, in SH4 they were fired, but didn't illuminate anything and in SH5... do they even get fired? I haven't seen any myself. HAs anyone else?
__________________
--------------------------------
This space left intentionally blank.
Nisgeis is offline   Reply With Quote
Old 04-23-10, 04:28 AM   #2
captainprid
Watch Officer
 
Join Date: Jul 2007
Location: Blackpool, England
Posts: 347
Downloads: 23
Uploads: 0
Default

Nope I don't recall any being fired. Having said that, I don't recall any concerted effort to try and sink me
__________________
Freedom of the press is guaranteed only to those who own one.

------------------------------------------------------------------------------

Cry 'Havoc,' and let slip the dogs of war;
captainprid is offline   Reply With Quote
Old 04-23-10, 05:17 AM   #3
doomlordis
Wild Night in Bangkok
 
Join Date: Nov 2002
Posts: 179
Downloads: 12
Uploads: 0
Default

never
__________________
subs and birds!
doomlordis is offline   Reply With Quote
Old 04-23-10, 06:01 AM   #4
Akula4745
Convicted Ship Killer
 
Join Date: Mar 2009
Location: Just out of sight... plotting your course and speed
Posts: 846
Downloads: 371
Uploads: 1
Default

Not yet... and they definitely had their chances.
__________________
Akula4745



"If you sit by the river long enough... the body of your enemy will float by -- SunTzu"
Akula4745 is offline   Reply With Quote
Old 04-23-10, 08:31 AM   #5
mookiemookie
Navy Seal
 
mookiemookie's Avatar
 
Join Date: Nov 2005
Location: Houston, TX
Posts: 9,404
Downloads: 105
Uploads: 1
Default

Been a while since I fired it up, but yes indeed, I've seen star shells.
__________________
They don’t think it be like it is, but it do.

Want more U-boat Kaleun portraits for your SH3 Commander Profiles? Download the SH3 Commander Portrait Pack here.
mookiemookie is offline   Reply With Quote
Old 04-23-10, 09:15 AM   #6
doomlordis
Wild Night in Bangkok
 
Join Date: Nov 2002
Posts: 179
Downloads: 12
Uploads: 0
Default

there is a wav for firing them and a few tga files called blured_sharp_star_add.tga and blured_spikey_star_add.tga , but im not sure they are for that.

Just another feature that didnt make it i suspect.
__________________
subs and birds!
doomlordis is offline   Reply With Quote
Old 04-24-10, 03:16 AM   #7
The General
The Old Man
 
Join Date: Aug 2006
Location: Mountain Ash, Wales, U.K.
Posts: 1,548
Downloads: 179
Uploads: 3
Default

Quote:
Originally Posted by Nisgeis View Post
Has anyone seen any escort fire star shells? In SH3, they were fired and they illuminated the surrounding area, in SH4 they were fired, but didn't illuminate anything and in SH5... do they even get fired? I haven't seen any myself. HAs anyone else?
Nisgeis, are you working on this as part of your wonderful AI Mod? I haven't seen any Star Shells either. In SH4 they used to be fired in a seemingly random spot i.e. nowhere near where the Sub was. If anyone can get this working, you can
__________________
***THE GENERAL***
The General is offline   Reply With Quote
Old 04-24-10, 03:37 AM   #8
kylania
Silent Hunter
 
Join Date: Aug 2006
Posts: 3,528
Downloads: 118
Uploads: 0
Default

Played SH3 again tonight! Here I am sinking a Revenge Battleship from 3.5km away in the midst of a convoy. One of four torpedoes prematurely exploded, but apparently no one noticed. Once the first of the last three hit though searchlights popped up everywhere!!

We definitely need more searchlights and starshells in SH5.

__________________

kylania is offline   Reply With Quote
Old 04-24-10, 12:56 PM   #9
Nisgeis
Ocean Warrior
 
Join Date: Jan 2008
Posts: 2,909
Downloads: 77
Uploads: 11
Default

Quote:
Originally Posted by The General View Post
Nisgeis, are you working on this as part of your wonderful AI Mod? I haven't seen any Star Shells either. In SH4 they used to be fired in a seemingly random spot i.e. nowhere near where the Sub was.
In SH4, they sort of fired them towards you, but they exploded really early through their flight, so they didn't get very far. They also didn't provide any light, which was annoying. Yes, it's to do with the destroyer strategies for the AI mod. mookie has seen them, so that means they are in there somewhere, perhaps it has to be cloudy, like in SH4. Thanks for the replies everyone.
__________________
--------------------------------
This space left intentionally blank.
Nisgeis is offline   Reply With Quote
Old 04-24-10, 03:07 PM   #10
Akula4745
Convicted Ship Killer
 
Join Date: Mar 2009
Location: Just out of sight... plotting your course and speed
Posts: 846
Downloads: 371
Uploads: 1
Default

Quote:
Originally Posted by kylania View Post
We definitely need more searchlights and starshells in SH5.
I second that emotion...
__________________
Akula4745



"If you sit by the river long enough... the body of your enemy will float by -- SunTzu"
Akula4745 is offline   Reply With Quote
Old 04-27-10, 05:00 AM   #11
reaper7
sim2reality
 
Join Date: Jun 2007
Location: AM 82
Posts: 2,280
Downloads: 258
Uploads: 30
Default

The ship weapons.aix file contains info on them.
Wonder if its called?

Code:
# Ship weapons:
#
strategy ShipFire(Ship)
{
precond
{
Ship:ContactDetected()
}
strategies
{
DC,
ShipFireStarShells,
Cannons
}
}
strategy DC(Ship)
{
precond
{
Ship:GetRole() != ROLE_SPIRAL
}
strategies
{
DCRacks,
HHogs,
DCThrower
}
}
strategy Cannons(Ship)
{
precond
{
Ship:CanFireCannons()
}
action
{
Ship:FireCannons();
}
}
strategy DCRacks(Ship)
{
precond
{
Ship:CanFireDCRacks() 
}
action
{
Ship:FireDCRacks();
}
}
strategy HHogs(Ship)
{
precond
{
Ship:CanFireHHogs()
}
action
{
Ship:FireHHogs();
}
}
strategy DCThrower(Ship)
{
precond
{
Ship:CanFireDCThrowers()
}
action
{
Ship:FireDCThrowers();
}
}
strategy ShipFireStarShells(Ship)
{
precond
{
Ship:CanFireStarShells()
}
action
{
Ship:FireStarShells();
}
}
Also in the ship tatics.aix file

Code:
strategy Role_Pineapple1(Ship)
{
precond
{
Ship:GetRole() == ROLE_PINEAPPLE1 
}
action
{
Ship:SetGotoDestRelToContact(-500);
Ship:GotoAction(0, false, 100);
 
Ship:SetGotoForwardDist(1000);
Ship:EnableStarshells(true); 
Ship:GotoAction(0, false, 100);
Ship:EnableStarshells(false);
 
newHeading = Ship:GetCurrentHeading() - 180.0;
Ship:TurnToHeading(newHeading, 1.0);
 
Ship:SetGotoForwardDist(300); 
Ship:GotoAction(0, false, 100);
} 
}
EDIT:

Just found this in the ship commander.aix file

Code:
strategy Commander(Ship)
{
precond
{
Ship:IsCommander()
}
strategies
{
#OperationPlasterComm,
OperationSpiralSearchComm,
OperationFollow,
#OperationSinglePlasterComm,
#PineappleComm,
#RaspberryComm,
TerminateOperationComm
} 
}
As you can see above the Pineapple stragey is disabled - The AI ships won't call the Pineapple stratagies which have the starshells in them.

Can someone test if we change #PineappleComm to PineappleComm
will it enable the AI to use the strategy Role_Pineapple1(Ship)

Still in development stage of my UI Mod so can't test this out at the moment.

Last edited by reaper7; 04-27-10 at 05:30 AM.
reaper7 is offline   Reply With Quote
Reply


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 -5. The time now is 05:07 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 1995- 2025 Subsim®
"Subsim" is a registered trademark, all rights reserved.