#Shockwave Drone Enemy v0.6.2

1328 messages ยท Page 2 of 2 (latest)

hollow hedge
#

let solid work on his stuff

#

ill do it by 2026

royal fractal
#

i could eventually push it to the project ill just see if i can do it first i doubt xu will mind as long as i dont break things fireinthehole

hollow hedge
eager wyvern
#

Any new mechanics coming, or are they more or less the same?

hasty oyster
#

Solid's return has definitely been amazing

eager wyvern
#

Agree

hasty oyster
#

We all lub Solid LUBBERS

eager wyvern
#

Yis

craggy viper
royal fractal
eager wyvern
#

They're so cute

#

I love them

royal fractal
#

i definitely did a good job keeping the original drone style on the new drone model

#

cause its supposed to be like the part thats the same on all the drones

#

also theres two more drones that are conceptualized but havent been worked on yet

#

it is 3:31am

#

neuroSleep i sleep

eager wyvern
#

Do both drones like being pet

royal fractal
#

nah we got the shockwave gal for that in code rebirth lmao

eager wyvern
#

The shockwave drones are cuter to me, so I'll find a way to pet them

royal fractal
eager wyvern
#

LOL

#

That's so funny

royal fractal
#

Also I got the AI concepted it will leave trails of like soapy water that if u walk on itll make u super slippery and it will bump you around if u like attack it or get close to it for a while or if it just runs into you lol be a perfect mix on the slippery ground you'd go sliding away into a seamine SurfacedRef heheheha

#

the fan will also have bubbles coming out of the top

#

idk what todo with the bubbles or just have them be effects

#

probably just effects honestly

#

OK i SLEEP

#

my brain hurts

#

new effects bump

royal fractal
pseudo grotto
#

At most ill update the fan texture for the unblurry version

#

But were not making it 3d

pseudo grotto
#

Dragonfly, gravitas and i guess subwoofer is a funny name for the big one

twin raven
#

oh wow i didnt know this was still being updated

pseudo grotto
#

He came back to it

#

greed now hes fixing the old drone and making my funny drone concepts

violet scaffold
#

ong...

#

also sweeper drone is super cute heheh

royal fractal
#

๐Ÿ˜Ž

#

and electricity zaps

#

ive been very slow at devving recently i have crazy brain fog lol

royal fractal
#

i dont have its slippery features made yet

violet scaffold
#

oh that's super cool, how do you make it float when it notices there's nothing below it?

royal fractal
#

i knew people would be curious about that lol

royal fractal
#

basically zeekerss never added any custom offmeshlink ai just used unitys default Teleport at fucking mach 1 thats what the auto traverse nav mesh link bool is on navmesh agents

#

it'd be cool if like some other enemys had their own movement over navmesh links

#

u can do like anything

#

its cool

#

heres what i did for my drone i added some comments "```cs
private IEnumerator FlyOverNavmeshLink()
{
isFlying = true;

        Plugin.Logger.LogInfo("SweeperDrone started flying over navmeshlink.");
        creatureAnimator.SetBool("flying", true);
        yield return new WaitForSeconds(2f);
        
        //get offmeshlinks data lol
        OffMeshLinkData data = agent.currentOffMeshLinkData;
        Vector3 endPos = data.endPos + Vector3.up * agent.baseOffset;

        //stop agent while manually traversing
        agent.isStopped = true;

        //move towards the end (note we can have any kind of movement for this if u wanted u could make other positions it has to move to) first)
        while (Vector3.Distance(agent.transform.position, endPos) > 0.1f)
        {
            //fly over at agent speed
            agent.transform.position = Vector3.MoveTowards(agent.transform.position, endPos, agent.speed * Time.deltaTime);
            yield return null;
        }

        creatureAnimator.SetBool("flying", false);
        yield return new WaitForSeconds(3f);
        Plugin.Logger.LogInfo("SweeperDrone finished flying over navmeshlink.");
        //reset
        agent.isStopped = false;
        //complete the offmeshlink
        agent.CompleteOffMeshLink();
        flyingCoroutine = null;
        isFlying = false;
    }```
#

and to have it know when ur on a offmeshlink you just do this somewhere in ai interval ```cs
case (int)State.Sweeping:
Plugin.Logger.LogInfo("Sweep");
if (agent.isOnOffMeshLink)
{
Plugin.Logger.LogInfo("Drone On NavmeshLink b");
if (flyingCoroutine == null)
{
flyingCoroutine = StartCoroutine(FlyOverNavmeshLink());
}

                }```
hollow hedge
#

oh lol

royal fractal
#

my animator btw

hollow hedge
#

thats bound to end badly, lol

royal fractal
#

?

#

works fine

#

how ive always done animators

craggy viper
#

Im confused

craggy viper
royal fractal
#

i have parameters that keep stuff from going from any states like if its dead it cant malfunction or bump or get hit

#

and i use triggers for them

craggy viper
#

Okie I like pikaBelieveinChu

royal fractal
#

i also have a different hit drone animation for when its in mid air so it doesent just jerk back down then up

#

just didint add it yet

tall grotto
#

is the shockwave drone still working?

eager wyvern
#

Yuh

#

One config option for it isn't though, and it's how much damage they deal upon exploding, but that's the only thing about it not working to my knowledge

royal fractal
tall grotto
#

looks like ice

regal crystal
#

very interesting

violet scaffold
#

oooo it leaves a trail of liquid and electrocutes it when it malfunctions?

signal kindle
#

Already loving this lil guy

white parcel
#

The name is clearly stolen from Moonswept tho /joke

slow pasture
#

Looks like a bluish mercury all over the floor

clear ferry
#

I was just testing this guy out with Imperium and I really like it! Wanted to mention though that when it does its attack it seems to throw this error.

Stack trace:
System.Collections.Generic.List`1+Enumerator[T].MoveNextRare () (at <787acc3c9a4c471ba7d971300105af24>:IL_0013)
System.Collections.Generic.List`1+Enumerator[T].MoveNext () (at <787acc3c9a4c471ba7d971300105af24>:IL_004A)
DroneEnemy.DroneEnemyAI+<Scan>d__32.MoveNext () (at ./src/DroneEnemyAI.cs:267)
UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at <e27997765c1848b09d8073e5d642717a>:IL_0026)

Don't see that it actually causes an issue, but wanted to mention it.

tall grotto
#

config doesn't seem to generate

pseudo grotto
eager wyvern
#

It's over

hasty oyster
#

o7

worldly karma
#

they will be added to repo instead greed

royal fractal
#

were so barack

hollow hedge
#

obama???

royal fractal
#

o7 modding role

clear ferry
royal fractal
pseudo grotto
#

@sonic delta while youre awake modder role solidstone

sonic delta
#

?modder 257354619808645120

glad saddleBOT
#

dynoSuccess Added role Modder to solidstone

#

Yay! @royal fractal you've been assigned the modder role. Head to #role-picker to select which type of modding you're interested and active in.

pseudo grotto
#

yippee

clear ferry
sonic delta
#

What even happened?

#

It's like an ancient thread

pseudo grotto
#

he made this original mod, was the main coder for surfaced for a while and did some stuff for code rebirth, he got burnt out recently and quit lethal modding for a while

#

but seems he might be motivated again

royal fractal
#

kay got my projects resetup

violet scaffold
#

Les gooo

gray swan
#

any update on progress? greed

royal fractal
#

welp gotta update the mod to the newer version

hearty frigate
#

question do you plan on just updating to v73? or also fix a few of the bugs?

hearty frigate
trail field
#

mildly frustrated*

pseudo grotto
#

surfaced getting delayed till i give a gaf

trail field
#

i give a give a fuck?

violet scaffold
pseudo grotto
royal fractal
#

it was mostly complete just very underwelming and has like zero polishing done

clear ferry
royal fractal
#

it felt really rushed though back when i was in a bad state of mind

hearty frigate
#

what?????

#

another drone?????

#

omgggg

hearty frigate
#

OMG ITS PEAK WTF

#

is that water?

#

its kinda similar to mopator

#

but different enough

violet scaffold
# slate imp

this is awesome that it's being revisited cuz it could use the particles from the electric chair to let the player know they're about to be shocked by the water

hearty frigate
#

so it is water

#

does the water dissappear after time? or could you have the entire interior be water

slate imp
hearty frigate
#

OH YEAH

#

missile turrets

#

thats like, such a sad loss :c

slate imp
#

they dont even spawn anymore

hearty frigate
#

is the dev around?

slate imp
hearty frigate
#

sad

slate imp
#

but its MIT license

#

so it could be forked

#

and the source is on git

hearty frigate
#

lets hope someone saves it ๐Ÿ™

#

the saving mods from updates arch is real

#

even insanity and visor devs came back

#

solidstone too omg im so happy

violet scaffold
hearty frigate
#

its like avengers

#

endgame

slate imp
#

lol

hearty frigate
#

xD

rigid fractal
potent thicket
# slate imp

small question, does this mod still needs solidlib?

slate imp
#

but id assume so

potent thicket
#

kk

hearty frigate
potent thicket
hearty frigate
#

yes!!!

#

idk if solid...stone will use solid...lib for the new version

#

i guess he will

royal fractal
#

i will but im also gonna fix up solid lib

worldly karma
royal fractal
#

mod should be ready for upload sweeper drone wont be included (yet) purely a fix update and the new shockwave effects i made a while back

hasty oyster
royal fractal
hasty oyster
#

Happy to see the drone finally get updated though yoiled I've missed it lol, it would always break if a Spike Trap tried to kill it

violet scaffold
pseudo grotto
#

cough biodiversity

hollow hedge
#

yo you okay? you sound a little sick

violet scaffold
#

like uuuuh.... โ€readme update"

#

and... "changed thing"

hearty frigate
#

Tysm!!! Aaaahhh im so happyyyy

eager wyvern
#

My baby is back

#

Shockwave drone time

#

how do you get rid of the achievements

clear ferry
# eager wyvern # how do you get rid of the achievements

Thatโ€™s not this mod. Thatโ€™s either CodeRebirth or DawnLib. CR is the only mod as far as I know currently doing achievements and achievements are done through DawnLib so idk who exactly is putting the button there. Probably Dawn but idk if you can disable the ones in CR and then when there are none Dawn doesnโ€™t put the button there or how it works.

eager wyvern
#

I do not have CR, only Dawn, and I have already checked Dawn's config to disable achievements, and there is none

clear ferry
eager wyvern
#

Mkay, ty

clear ferry
clear ferry
pseudo grotto
#

Peak achievement

pseudo grotto
royal fractal
#

forgot to send the changelog in here

#

v0.7.3:

  • Updated to v73. (finally)

  • Started using DawnLib for some registration and achievements.

  • New shockwave drone effects.

  • Fix player getting stuck slowed (finally)

royal fractal
#

pushing a small fix to the default spawnweight config xu told me i had it incorrect

hasty oyster
royal fractal
#

i just pushed a patch to fix the default but theyre supposed to be "Custom=60,Experimentation=40,Assurance=50,Vow=60,Offense=50,March=60,Rend=30,Dine=30,Titan=70,Adamance=65,Embrion=80,Artifice=95" for default

hasty oyster
#

Should it be = or +=?

royal fractal
#

yea

#

just like code rebirth

hasty oyster
#

Okay so like this then

#

Got ya

hollow hedge
#

+= is not a thing, it's either a =+ or =

#

both are equivalent

hasty oyster
#

Ah okay

rigid fractal
#

BY GODS LIGHT I SMITE YOU

trail field
#

I thought it was terraria for a sec

hasty oyster
#

@royal fractal

pseudo grotto
#

@royal fractal

#

heres logs

pseudo grotto
#

woah thats crazy

#

where did that come from

#

here solid have some more

royal fractal
#

welp shiat uhrr

hasty oyster
# royal fractal welp shiat uhrr

Why was Solid Lib even trying to access that method? Hope it's a simple fix at least lol, I randomly saw that error fire off and was like "Huh, how did we never run into this sooner?" lol

hasty oyster
hasty oyster
#

@royal fractal Error still throws after the update did you upload the wrong DLL?

hearty kraken
#

@royal fractal shockwave drone refuses to spawn on lithium

hearty frigate
#

hellooooo

#

sorry to bother but is there any progress on the other enemy?

#

seems like solid went MIA again, honestly fair i hope they are alright

hasty oyster
#

@royal fractal If you come back from being MIA, DawnLib update breaks the drone

slate imp
hollow hedge
#

Nah this is a new one

slate imp
#

god dammit it died again

regal crystal
#

so turn off the drone for now?

slate imp
regal crystal
#

ill put my trust in dawn's latest update. if somethin oddge happens, ill do the B path

slate imp
#

the new update wasnt to fix anything

#

was some new features and some rewrites

regal crystal
#

i'll still give er a whirl

slate imp
regal crystal
#

updoot dawn

slate imp
#

bc I tried it you cant even spawn the drone

#

oh ok

slate imp
hearty frigate
#

drone cant catch a break...

slate imp
#

fr fr

regal crystal
royal fractal
#

Fixed the dawn lib errors

#

xu told me to

#

@hasty oyster

#

get pinged

violet scaffold
#

awesomee

hearty frigate
#

@slate imp

hasty oyster
# royal fractal Fixed the dawn lib errors

Hooray LyraHeart Now we just need SolidLib to stop throwing that TimeOfDay error that it was supposed to stop throwing with its new update yoiled I keep wondering if you accidentally uploaded the wrong DLL somehow

royal fractal
#

Working on a new mod that includes the sweeper drone and 2-3 other drones theyre gonna also gonna have actual flight navigation (not stuck to the navmesh)

slate imp
#

Is it true that the newest dawn update broke the drone again

slate imp
#

seemed to work

#

(updated dawn)

#

unless I was one patch behind

#

well anyways @royal fractal when you get the chance should just need a recomp

astral hawk
#

Well, in that case... I've just had it turned off since everything broke a few days ago as it was throwing errors like SSS and Usual Scrap which have since been patched.

hearty frigate
#

:c ma boy shockwave waaaa

#

always breaking

violet scaffold
#

not even its fault this time but sad

hollow hedge
#

kinda is, but solid already knows to recomp when he gets the chance

hearty frigate
#

๐Ÿ™

dark orchid
#

So is the drone bugged rn?

#

As I tested it and it never spawned

hollow hedge
#

if it hasnt updated, then its bugged

regal crystal
#

never noticed it not spawning. shit

dark orchid
#

Yea dawnlib updating is probably why

hearty frigate
#

And solid is busy so

#

Baby shockwave dead :(

white parcel
hollow hedge
#

Solids busy and reset his pc, when he gets time he'll set it back up and rebuild

slate imp
#

๐ŸŒท

slate imp
#

@royal fractal gotta say I love the mod and will be happy when the drone returns once more ๐Ÿฅ€

heady rock
#

update for v81? O.O

gray swan
heady rock
gray swan
#

well thats ur answer

heady rock
hearty frigate
#

They probably just moved on to other stuff

#

And is completely fair

#

We miss our boy but sometimes we gotta move on perceive

clear ferry
#

But I want the funny little bzzt drone ๐Ÿ˜ญ

hearty frigate
#

We all want him back ๐Ÿ˜ญ

#

But we gotta let go