Relic Hunters Zero: Remix

Relic Hunters Zero: Remix

KerBlaster
12 条留言
Jö Sir Midnight 2017 年 10 月 22 日 上午 1:22 
I should mention this gun occasionally does so much knockback, that it literally makes enemies that are not killed fly across the map...

and when the shot that would normally send duncans flying kills...it turns them into a pixelly red mist. complete with the satifying slo-mo lag...B L I S S
Chan Weak 2017 年 9 月 6 日 上午 4:39 
Great, man! Hope u make some other great works :steamhappy:
MechaTails  [作者] 2017 年 9 月 5 日 下午 7:16 
Whew, finally got this working the way I wanted. I added Flak ammo and tweaked the stats to hopefully give it a distinct playstyle.
Chan Weak 2017 年 9 月 5 日 下午 5:09 
oh ok
MechaTails  [作者] 2017 年 9 月 5 日 下午 5:08 
Nope, no one seems to know anything yet. I posted on the forum about it already, hoping the dev responds eventually.
Chan Weak 2017 年 9 月 5 日 下午 5:07 
but did u figure how to fix ur problem wit the rocket projectile?
MechaTails  [作者] 2017 年 9 月 5 日 下午 5:02 
(Edited response lol)

Nope, we cant use that programming language, the dev has to make that available to us as a...Trait? String? Whatever the term is.

So for example, they would have to make a trait called [bullet_burst_on_hit] so we can use it like:

[bullet_burst_on_hit]:"1" (1 is true, 0 is false)
[bullet_burst_amount]:"4" (the number is projectiles the bullet should split into on hit)
Chan Weak 2017 年 9 月 5 日 下午 4:57 
i know but can you use it to make it burst into bullets like u were wondering how to do?
MechaTails  [作者] 2017 年 9 月 5 日 下午 4:55 
Thanks Blu, that's not how we can mod the weapons though. It's a lot simpler, like:

[fire_rate]:"1.4"
[ammo_type]:"medium"
etc.

The dev could probably use that though.
Chan Weak 2017 年 9 月 5 日 下午 4:47 
try coding this into the weapon/rocket:

void Update() {
if (rocket != null)
rocket.velocity += rocketSpeed;

if (rocket.hitSurface) {
Vector3 surfaceNormal = rocket.hitSurface.normal;

for (int i = 0; i < Random.Range(minBulletsToCreate, maxBulletsToCreate), i++) {
// Assuming the bullets move on their own
Instantiate(bullet, rocket.transform.position, Quaternion.Euler(surfaceNormal + Random.onUnitSphere * randomBulletDirectionMagnitude));
}

Destroy(rocket);
}
}

(i asked some people about that burst bullet rocket thing to help u out :steamhappy:)
Self Medicated sups.gg 2017 年 9 月 3 日 下午 1:02 
THIS!!!! :steamhappy:
Woey 2017 年 9 月 3 日 下午 12:47 
great job :D