Are you trying to spawn units on the map? Is this even legal?
Aeroplanes are interesting toys but of no military value. ā Marshal Foch A pretty mechanical toy [...] the war will never be won by such machines. ā Lord Kitchener, on tanks
13 Oct 2023, 23:46
Lord Crayfish wrote:
Are you trying to spawn units on the map? Is this even legal?
No lol. I just noticed how the OP said destroyer "object" instead of "unit" which reminded me of creating an object in Java.
I can't use it to spawn units on the map (or can I?)
Stay Sweet!
13 Oct 2023, 23:51 (edited)
Taffyta Muttonfudge wrote:
I can't use it to spawn units on the map (or can I?)
I should bloody well hope not.
Glad this was a joke.
Aeroplanes are interesting toys but of no military value. ā Marshal Foch A pretty mechanical toy [...] the war will never be won by such machines. ā Lord Kitchener, on tanks
14 Oct 2023, 00:46
Omg pls try it I need to know if it works
CarKing the 6th of the Abrahamic Caliphate
14 Oct 2023, 10:25
(Immediately spawn 10000 RRGs against USSR)
Looking for improvement.
14 Oct 2023, 13:47
Taffyta Muttonfudge wrote:
Like this:
[code=java]public class Destroyer extends Unit {
private int hitpoints;
private double damage;
private String location;
public Destroyer() {
hitpoints = 50;
damage = 8.0;
location = "New York";
}
public Destroyer(int hitpoints, double damage, String location) {