-
Posts
2381 -
Joined
Everything posted by NodSaibot
-
November 31st, 2020
-
Do you have updated drivers or have you updated them recently?
-
Not only this, but gunner can pop around corners and shoot rockets, while LCG must stay visible to shoot his LCG. GDI just has more burst dmg, while being high HP and Nod has more sustained damage stuff (flame tank, stank kind of, lcg, chem trooper etc), while lacking in armour. Nod must remain out in the open to fire their entire clip, while GDI generally can peak and kill stuff easily, and at the same time, GDI also is hard to burst due to their high armour
-
That is the current plan!
-
It was left out on purpose. And thank you for the support. I could finish my sniper server plugin and add that feature, I think it would be quite fun.
-
Fixed, will be in next patch
-
Potential issue with weapon cache crates
NodSaibot replied to Tyrranis's topic in Feedback & Bug Reports
Fixed weapon crates not being affected by veterancy -
It's not literally talking about the .exe itself
-
If it's the GDI one, it's already fixed on dev version
-
Potential issue with weapon cache crates
NodSaibot replied to Tyrranis's topic in Feedback & Bug Reports
Fixed it to give random weapons -
Game crash on map Under in skirmish mode
NodSaibot replied to Gthebeast's topic in Technical Support
Looks like a problem in the physics engine. If it becomes a normal thing, let us know. Random one-off crashes sometimes happen -
https://www.tiberiantechnologies.org/downloads install that
-
I just played it last night and I am working on a new map for it. The kill sound is on purpose so there's no super spam of it. Placing defenses (you can buy them in the Q menu in the purchase terminal) is basically the only way to win.
-
Game crashes to desktop upon joining server
NodSaibot replied to JimboInLimbo's topic in Technical Support
Does this happen when opening the game without trying to join a server? I think your best bet is running verify game integrity then reset game. -
There is currently no fix, however using 32bit RenX will result in it happening less. Using 32bit also leads to more VRAM crashes, so it's kind of a trade-off for one or the other. --Sarah
-
Manually update your launcher.
-
Locking the post, as the questions were answered by staff members, and the thread looks like it has served it's purpose. If there's any other questions, feel free to start another thread.
-
We are currently looking into adding more statistics and balance tracking, however I do not know if we will include anything to this amount of detail.
- 1 reply
-
- leaderboard
- weapon
-
(and 1 more)
Tagged with:
-
Made a fix, not sure if it will cover all cases but it should. Will be in next patch
-
i got scrin'd the other day, its definitely still a thing
-
In this tutorial I will explain a bit how to use Rx_PassiveAbility, and utilize it fully to create a mutator that is compatible with other mutators (don't need to overwrite any classes). This mutator will give Sydney a healing passive ability. Rx_PassiveAbility is a class that is spawned when a character is spawned(bought or spawned from crate). This all starts in the SetCharacterClassFromInfo function of Rx_Pawn. From there, we can see in that function that GivePassiveAbility is where abilities are given, so that will be our entry point in the mutator. (Rx_PassiveAbility_ArmourHeal) First, let's create the passive ability that we will apply to Sydney. We define a couple variables that we will be using so that we don't have plain numbers lying around in the code, and we can tweak the code easily using DefaultProperties. The Init function is called when a passive ability is attached to a Pawn, so let's use that as the time to start the timer for the healing. We also need to create a heal function, so we will create that function with all the needed checks and functionality. Since we don't want this to be too overpowered, let's add a penalty for taking damage, which is easily doable using the NotifyTookDamage function provided in Rx_PassiveAbility. (Rx_Mutator_HealingSydney) Using CheckReplacement we can see when an Rx_InventoryManager_GDI_Sydney is spawned, this means a player just bought a Sydney or got one from a crate. Whenever we verify this information, we can go ahead and call GivePassiveAbility on the player's pawn. Since Other is the InventoryManager, and the InventoryManager is spawned by the Pawn, we can check the Owner of the Other and get the Pawn from there. The code is decently commented, so it should be self explanatory, however, if you have any questions, feel free to ask. Finished files
-
- 2
-
-
-
FEATURE REQUEST: HANDBRAKE BINDABLE IN UI
NodSaibot replied to roweboat's topic in Feedback & Bug Reports
Will be in next patch. C still does handbrake, but there is another key you can bind now specifically for handbrake that won't crouch your character. That and vehicle lock will be in input menu in pause menu. -
It is technically possible, but there is code that helps prevent it