Jump to content

Crnyo

Members
  • Posts

    26
  • Joined

  • Last visited

Personal Information

  • Allegiance
    None

Crnyo's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. As an added benefit players would have a sense that they are working towards long-term goal during their play. They would accumulate credits so that after a while they can buy really powerful vehicles. But they would have to balance between playing offensively and defensively. If you are too defensive you won't get credit ticks from dealing damage and you might lose control of the field. If you are too offensive you can lose your expensive units which will delay your ability to buy weapon upgrades.
  2. Sometimes marathon matches can really suck when more than half of your team consists of lone wolf players. I'm sure most of us had an experience when someone would try to get tank rush going only to have 6 out of 20 people respond. Other times you can even get decent numbers but if defenders decide to turtle in base they can easily outrepair your damage. I'm interested to hear what do you guys think about giving player's ability to pay extra credits to buff their vehicle's damage? When spawning a vehicle you should be able to select the level of weapon upgrades it will have. I propose 3 levels according to following formula cost = damage ^ 4 1st level: DPS increased by 33.3% - vehicle cost increased times 3,13 (1,33 * 1,33 * 1,33 * 1,33) 2nd level: DPS increased by 66.6% - vehicle cost increased times 7,59 (1,66 * 1,66 * 1,66 * 1,66) 3rd level: DPS increased by 100% (doubled) - vehicle cost increased times 16 (2 * 2 * 2 * 2) Now even if your team only has 6 teamplayers out of 20 people they can at least buy upgraded vehicles which would significantly increase the chance of making the rush successful. These upgrades would be really expensive - for example if you want to upgrade your medium tank so it does twice the DPS you would have to pay 16000 credits for it. Therefore these vehicles couldn't be spammed. You would have to spend at least half an hour saving credits for that one special rush. What are your thoughts on this?
  3. For some reason Beta 5 SDK is failing to download and I only have Beta 4. I've read what BroTranquility is trying to make. I think reason why he encountered difficulties was because he tried to change building health through internals class. Month ago I made a small mutator which removes repair guns and buffs vehicle and building HP with certain multiplier. I encountered similar issue and what worked for me was changing building HP through Rx_BuildingObjective class, not building internals class. Although mutator I made can successfully modify building max health it does so before game fully loads. I'm not sure if building max health can be changed during the game after buildings have already been spawned. If that turns out to be an issue then we can try to mod repair gun instead so it stops repairing buildings beyond target percentage. If I manage to download beta 5 SDK I'll attempt to code a mutator for this. edit: Mutator BroTranquility is trying to make is much more sophisticated than what I'm suggesting here. He is trying to add actual armor values which would be graphically represented. I am on the other hand just suggesting to tweak building max health. Its much more crude approach.
  4. Decreasing building max health whenever it gets damaged beyond certain level should take only few lines of code. For example if 50% of building health is armor and other 50% is unrepairable HP then pseudocode would look like this: if (buildingHealth < 0.5*maxHealth) maxHealth = (0.5 + buildingHealth/maxHealth) * maxHealth; If building health drops to 20% then new maximum health would become 70%. I could probably code it today but issue is that there is only 1 or 2 active servers and I imagine admins aren't willing to implement new mutators cuz changing stuff is risky and they might lose players.
  5. I'll quickly throw my 2 cents although I'm not really qualified to answer. I think it is up to you to decide whether you want to start making simpler games from scratch by yourself or mod RenX. Personally I've decided to learn UnrealEngine just so I could mod RenX. However if you are purely interested in learning UnrealEngine to make your own games then simply getting a book on how to do so might be a faster route. Make sure to browse through Unreal Developer Network as it has all the technical information you need. If you want to start learning how to make games by modding RenX then I can recommend: a) Get Unreal-X Editor for writing code b) Download UnCodeX UnCodeX is useful because it allows you search entire sourcecode for specific phrases. When modding RenX you will often find that one functionality is fragmented across several files so traditional text editors just won't do.
  6. Excellent work. I especially like your decision to make new vehicles only accessible through crate drops. Kudos to that, I think it will make map control more rewarding.
  7. It seems that turrets have their own Controller class. Instead of referring to placeable turret classes perhaps you should try referring to Rx_Defence_Controller class. Those shouldn't be duplicated in MP match. You should be able to find the location of Controller's turret using this: Rx_Defence_Controller(Actor).Pawn.Location
  8. Hm the number of initialized turrets in multiplayer match is different from singleplayer match? That is weird. It would be interesting to find out why this is the case. How can I replicate your finding? Is there a console command which lists all objects of specific class? In any case, I think your issue could be solved this way: (Replace Rx_Defence with the exact name of duplicated turret class) Struct All_Actors_Refering_ToA_Single_Turret { var array Actors; } var array Turrets; ... local int i; local All_Actors_Refering_ToA_Single_Turret NewTurret; local bool Turret_Already_Exists; foreach Rx_Game(WorldInfo.Game).AllActors(class'Actor', Other) { if (Rx_Defence(Other) != none) { Turret_Already_Exists = false; for(i = 0; i < Turrets.Length;i++) { if (Turrets[i].Actors[0] == Other.Location) { Turrets[i].Actors.AddItem(Rx_Defence(Other)); Turret_Already_Exists = true; } } if (Turret_Already_Exists == false) { NewTurret.Actors.AddItem(Rx_Defence(Other)); Turrets.AddItem(NewTurret); NewTurret.Actors.Length = 0; } } } So basically every element of array Turrets will hold all actors refering to a single turret. Say Field has 2 turrets. If you want to order second turret to fire then iterate through Turrets[1].Actors array and give order to every individual Actor to fire. This is not elegant solution but I hope it will get the job done until someone manages to figure out this singleplayer-multiplayer weirdness.
  9. Crnyo

    Harvester Spawn

    Are you trying to make harvesters only spawn once? If so try to access VehicleManager in Rx_Game and set bNodRefDestroyed and bGDIRefDestroyed to true. If you are using a mutator you could try putting this in your postbeginplay() RxGame(WorldInfo.Game).VehicleManager.bNodRefDestroyed = true; RxGame(WorldInfo.Game).VehicleManager.bGDIRefDestroyed = true; Whenever harvester gets destroyed game will check whether *RefDestroyed is set to true. If it is then harvester spawning will be aborted.
  10. I can't understand why this is the case. Either marathon is objectively a better gamemode or most players have left for other games which do TDM better than RenX marathon can - in which case those who remain form very specific and unrepresentative sample of players.
  11. This is a good point. If commander controls more than 5 pawns and someone else applies for commanding then pawns could be evenly split between you. But if no one applies for commanding then it would be possible for one commander to controller all of the pawns. However, I'd put this under fine-tuning category. For starters we should aim to make simplest prototype version of commander mode so playerbase could actually getting a feeling for it and then decide whether they like the idea or not. This is the problematic part. If commanders were only to give waypoints instead of micromanaging pawns then issue with bad bot AI would still remain. Coders would still have to spend time on improving AI and fighting bots would still feel like PVE. On the other hand if commander micromanages pawns from overhead view then fighting those same bots would now be true PVP. So players could use vote menu to initiate bot rushes. You could choose between APC rush, tank rush, aircraft rush, rocket soldier or engineer rush through the tunnels etc... Basically every category of rush would have scripted strategy for bots to follow. If vote to rush passess then global AI controller would temporarily be replaced by specialized AI sub-controller specifically scripted for executing specified type of rush strategy. This would require some work not only because those strategies need to be coded but because bot pathfinding isn't reliable. They tend to crash into each other and get stuck. If you ever wondered why bots suicide it is because of bad pathfinding. When they can't get unstuck they just kill themselves and respawn.
  12. EDIT: I don't think overhead maps are really all that necessary. None of the maps are all that big, and having to open up a map takes you out of the game. Just being an overhead view entirely REALLY takes you out of the game which actually puts your team down a player, and removes any sense of danger for whoever is commanding. I think it'd work if teams did have a commander, or optionally several, that could use an item........saaaaaay binoculars, that let them set targets/objectives/Waypoints without them ever actually leaving the fight and being vulnerable. They'd have to stay in the back, and they'd probably be best as a sniper/Tech, but since their main job would be coordinating this wouldn't be much of a problem at all. Well I personally think that commanding a squad of bots against FPS players would be a fun RTS concept. Overhead camera is necessary so you can issue orders and position bots more easily. Technically they wouldn't be bots any more because player commander is controlling them but you get the idea...
  13. Hm I guess people aren't thrilled with the idea after all. I think people play multiplayer games because they enjoy the social aspect, not just opportunity to chat with other players but rather the knowledge that you are playing with other humans. I'm confident that even if we made AI to be much more smarter people would still prefer playing against other humans. For instance, imagine someone told you during your RenX game that all other players were actually bots. I'm sure the game would suddenly become much less fun despite the gameplay objectively remaining the same. Commander mode is essentially a way to make fighting against bots feel like fighting against other humans. NPC Pawns would no longer be controlled by AI. When fighting those NPC Pawns you would know you are actually fighting other human player and that is what would make it more satisfying. Fighting against bots is currently PVE, if bots are commanded by human player then suddenly it becomes PVP. Thats the whole idea behind commander mode. When you go on a killstreak you would know enemy commander is watching his pawns getting slaughtered and is raging. When you get baseraped by NPC pawns you would know human commander is orchestrating this.
  14. I'm not yet very familiar with UDK and RenX source code but it seems to me that this wouldn't require very much work. Largest bit that needs to be coded is camera class for commanders and a unit bar for buying vehicles and infantry. Everything else is already in game. Bot decision making AI needs to be removed and replaced with listener which would transmit commander's order where to go or what vehicle/character to buy. That shouldn't be longer than few lines of code.
  15. RTS interface or commander mode. One player should control bots using RTS-style marquee selection while other team should consist only out of human players without commander. If bots are directly controlled by player commander then that solves the issues caused by bad AI and makes for a very interesting game mode. Alternatively, we could have 2 commanders controlling bots and duking it out while PC soldiers do their own thing. From RTS perspective they would be something like hero classes commanders can't control- This mod would put bots to a very good use which is exactly what this game with low playerbase needs. As far as I know there is nothing like this on game market. Natural Selection 2 has commander system as well but commander there doesn't directly controls units, he just builds stuff and buys upgrades. What do you guys think?
×
×
  • Create New...