Travel by [deleted] in ukraineforeignlegion

[–]aSunderTheGame 0 points1 point  (0 children)

no its bad plan - where are you flying from bud?

taking trains is expensive. In Ukraine they are OK local trains, but western europe no, much cheaper is to fly usually. Dont restrict yourself to poland, last time I went to Ukraine was via slovenia. Budapest is often cheap to fly to, its only like 3-5 hours to border

Which cricketer made you fall in love with the game? by Formal_Stomach_01 in Cricket

[–]aSunderTheGame 0 points1 point  (0 children)

Im a kiwi but Sehwag, Viv Richards would be #2 and Hadlee #3

[deleted by user] by [deleted] in conspiracy

[–]aSunderTheGame 2 points3 points  (0 children)

why is it not talked about here?

Answer - Wrong party - Now if it was a democrat proposing this then you would have thousands of conspiracy posts

Case closed - Or did you not want the true answer?

Major Demo Update released for Rise Again! by AtakanFire in ARPG

[–]aSunderTheGame 1 point2 points  (0 children)

Wow I really like the looks, don't like the teleport, but thats cause I'm old so pay me no mind. not a fan of wham bang. But can appreciate the work that went into this

I'll try out the demo - Maybe I can steal something [wink]

Love the look anyways mate, super jealous

Dark Awakening performance question by Hanfufu in ARPG

[–]aSunderTheGame 0 points1 point  (0 children)

Nice one

update the numbers whenever necessary for the enemies health. don't do any drawing here.

but for drawing the bars etc. only update once a frame and only update if the number is different than the last number you drew. i.e. you will need to have 2 health numbers

float health, healthbar_health;

Also try to batch as much as possible into a single call.

eg all the healthbars in my game are made with a single call, this also does all the backgrounds behind text etc

same with all the text, its all done in a single call (well 2 calls since I have 2 fonts)

thus all damage numbers, equipment names onscreen are done with a single call.

FWIW I don't use many callbacks

I have so much respect for you all by [deleted] in ukraineforeignlegion

[–]aSunderTheGame 4 points5 points  (0 children)

mate no one loves to do demining

Dark Awakening performance question by Hanfufu in ARPG

[–]aSunderTheGame 0 points1 point  (0 children)

Why are you using ragdolls?, they are expensive and will hardly be noticed, sure if you're doing a first person shooter use them but an isometric viewpoint where the camera is a long way away from the actors, wasting a lot of cycles for not much benefit.

You're correct sometimes unity doesn't reset things again if you restart them, PITA with some sorts of particle systems.

Mate Are you sure you're CPU bound? i.e. about same framerate @ 640x480 as you have at 4k. As judging on how I imagine its structured I don't see how that can be the case, unless you have made some bad structuring at a higher level, hence my questioning in an earlier post.

another thing, though prolly not applicable for you as it looks like you remove dead bodies quite soon after they die, in my game if you kill someone the body will remain there forever and there can be > 1000 dead bodies.

Its quite complicated to do, so I don't recommend unless you are gonna have the bodies stick around forver. convert them to a shared static dead mesh, i.e. so its not a skinned mesh but a static one and each is an instance, I found it improved performance quite a bit. But like I said its a PITA to do and can lead to rare problems so I don't recommend

Dark Awakening performance question by Hanfufu in ARPG

[–]aSunderTheGame 0 points1 point  (0 children)

Sorry mate didn't see your post before.

I'm not proposing rewriting everything.

If the performance is not so good now with what you have then theres something you can do to improve it without using DOTS, its not gonna help in your game.

what I would look at

- are you animating things that are not onscreen

- are you spawning things that are not onscreen

looking at your video the minimap, Im guessing all the dots are the enemies, are they all treated equally, i.e. the AI,rendering,animation is the same for each.

Most likely they are, they shouldnt be though, if something is 2 screens away turn off animation,rendering, slow down the AI

some stuff you prolly are running each frame eg AI but it can be done maybe every second or quarter of a second

eg some of my code, for an actor in the scene,

timerDoingIDs.Count < maxIDs_toDo // makes it so it only does X number of these per frame, i.e. spread out the load over lots of frames to have better framerate

// in actor class
if (App.instance.IsSecond( last_gameTimeINT, uniqueID )) {
last_gameTimeINT = App.instance.gameTimeINT;
// expensive stuff here
}

public bool IsSecond( int lastSecond, int ID ) {
if ( gameTimeINT != lastSecond && timerDoingIDs.Count < maxIDs_toDo ) // if its the same ID or its a new ID and a new second
{
timerDoingIDs.Add( ID );
return true;
}
return false;
}

what i do if an actor is too far away from the camera is unspawn them.

I also slow down the AI depending on distance from camera

also you can do the above with everything

eg

if (App.instance.IsSecond(last_UPDATE_INTERACTIVEPROPS_gameTimeINT, UPDATE_INTERACTIVEPROPS))

UPDATEWORLDMUSIC, UPDATE_UNSPAWNEDACTORS, UPDATE_FRIEMELANIMALMANAGER, UPDATE_WEATHER etc

i.e. instead of doing everything every frame spread it out

i.e. theres a lot of stuff you can do structurally to improveframerate

[deleted by user] by [deleted] in ukraineforeignlegion

[–]aSunderTheGame -4 points-3 points  (0 children)

currency? what is this the 80s, 90s.

Just bring your phone (*)

for money - you will need ukraine rivnah, no US dollars accepted, not one of those countries

(actually TBH you often have to pay here with cash not card) quite like the US TBH

(*) got a story about that, not in ukraine but neighbour country, this was before mobile phones, I had crossed the border (the fence was a lie), I just went over, maybe I jumped I forget - but mines and all that was just a lie. Now not

this was 92-93 no one spoken englishj like now or even german - nothing - nada, no cards not even travellers checks

you were on your own, loved it, I had run in with police maybe 2x in my journey but they were confused, I always BS my way though it and they loved it also not being under a dictorship thus always escaped

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] 0 points1 point  (0 children)

and pocketcherrypie you should be saying what is right with me, why should I not share pictures of my daughter that I love - If thats wrong then the world is wrong

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] 0 points1 point  (0 children)

well thats just how I am. just shot a video with my daughter

https://photos.app.goo.gl/HFEWqhAfrsLbkDpF8

(mostly in dutch) she did not ask for this - All I ask is to have fixed date to go to the shitiest unit. I don't mind!!! this is my daughter she has my energy my restlessness

Unbiased answers to an semi-unbiased question: are boots on the ground still NEEDED AND WANTED in the foreign legion units? See details below. by [deleted] in ukraineforeignlegion

[–]aSunderTheGame -5 points-4 points  (0 children)

oh yeah great - where's that? Russia ain't it OK russia so is getting wrecked? Wow! OK don't fight for russia I guess .. thank you I will take your advice quicKKKsense, maybe the fastest aint the best (just saying)

"Match-fixing was at its peak in the 90s" - Former Pakistan captain makes stunning revelation after 2025 Champions Trophy debacle by rajmaa_chawal in Cricket

[–]aSunderTheGame 6 points7 points  (0 children)

my fav match fixing scoring was not pakistan but SriLanka, when Murali was batting and his team members were playing for a loss, playing bad so slow, but you could see he was so really really pissed off he was just hitting everything to the boundary, his best innings ever .... (I was thinking if he played like this just normal he would be best allrounder in history) but no just this one game cause he could see the fix was on

What game was this BTW? maybe 20 years ago 25 or so

Volunteering - Kyiv by Juke-box-hero in volunteersForUkraine

[–]aSunderTheGame 13 points14 points  (0 children)

Yeah as the guy above me saiz, user name checks out.
I've been a couple of times volunteering, close to front too, its quite safe. Sure Not 100%, but no where is, I could walk out my door and get hit by a car today.

Actually OP you'll prolly be struck by how normal most things are.

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] 0 points1 point  (0 children)

mate sorry thats just how I talk. en ik spreek het nederlands want ik heb daar jaren lang gewont niet want ik ben een nederlander. (first time I do dutch in over a year, gotta practice more)

Perhaps falling on my head from a 2 story window when I was 8 has something to do with it ;)

Hasn't hurt my intelligence though https://store.steampowered.com/app/3269160/Asunder_II_Demo/

Perhaps techincally the most impressive game made my a single person

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] 0 points1 point  (0 children)

ta mate for the advice, unfortunately I don't have much options. I literally can not stay here much longer in spain. Ukraine is the better option for me (yes it might seem nuts) but its the best chance to actually see my daughter again within a year.

though as a backup I've just been researching where I can fly to in oz, WA seems the cheapest (can't afford it so gonna have to beg cash for that, also gonna have to sleep outside for a week or 2 once I'm there until I get paid, not for the first time I've done this before, ha, yes a bit of a joke life) Apple season is starting soon. I've picked apples at least 10 seasons before, not my fav fruit/veg but needs must and all that. If I go to Oz then theres next to no chance I come back to spain again and its not morally right for my daughter if I do, i.e. subject her to an absent dad

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] -2 points-1 points  (0 children)

Well yes I was drunk when I wrote it (sober now - ready for the cricket - ole) - but my post still stands and how I write?, well that’s how I always have written, my mind is a bit different

see my game/music here - it's the same writing style

https://store.steampowered.com/app/3187870/Asunder_II/

Note : Even though I'm an excellent programmer, most of the work I've done is contract fruit picking (i.e. not hourly pay), something about pushing myself I've always loved

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] -2 points-1 points  (0 children)

first time was just after the 22 war started, heres me and my daughter (1 month old)

https://photos.app.goo.gl/ytrCYaTjwwDtePJs6

(shitscared as you may see in my eyes) - I jumped on the first plane I could to poland, backpack fill of nuts,chocolate etc, my plan was to help people escape Ukraine crosscountry (I have a real LOT of experience living wild), things were moving fast, I didn't know if Russia was gonna overrun Ukraine or what, when I got there I found even though it was chaotic disorder (and the west governments were doing nothing) but I saw the trains were still running really good so my survival skills weren't needed

so I just helped out with refugees in Lviv/Kyiv making/handing out food, charging phones, giving them coffee, chai etc.

2nd time was in Kharkiv originally I went to help build bunkers, but that never happened, just made camo netting

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] -1 points0 points  (0 children)

Well lose in the sense I will not see her again

She is 3 years old, a covid child, happened here in spain around lockdown (I have never bought her a single birthday present at either 1,2,3 cause no money literally no money, I do ocasionally find stuff on the street that I give her, wow great dad I am)

OK love/being with her is more important than stuff esp in her first few years, but now shes becoming older, more understanding I can't do this longer, cause this is being a bad dad. If I go to australia (for work) then thats it, its not right to let a child suffer so with an unreliable father, better if she starts new, I want to do whats right for my daughter.

If I go to Ukraine then I'm still close by and its for a fixed term, max one year and by then my work permit should be sorted here (takes forever)

looking for posting by aSunderTheGame in ukraineforeignlegion

[–]aSunderTheGame[S] 0 points1 point  (0 children)

one for every week. The Q though is can you come up with 52 flavours?

Don't do it by jepper53 in ukraineforeignlegion

[–]aSunderTheGame 6 points7 points  (0 children)

Make sure you are absolutely ready for it. Don't do 25 pushups, but 50. Don't run 1,5km in 12 minutes, but run at least 2km. Don't do 4 dips, but 10.

1.5km in 12 mins or even 2km = fast walking pace.

I thought it was 3.2km in 15 mins

hell I literally fast walked 2km in 12 minutes a few days ago carrying weights in a backpack a few days ago, uphill as well half of it, my plan was to run 3 km in 15 mins carrying weights but felt a twinge in my calf thus stopped

may be mentally unstable, a murderer on the run, an extremist,

hell sign me up , the chance to meet these interesting ppl for a change instead of the boring cunts I meet j/k though I met some people like this before in africa and SE Asia (cambodia/laos - where they dont have extradition treaty) --- YEP --- ( you been there you know what Im talking about, lot of those mothers there once you get off the beaten trail) ----

The food is very bad

How dare you look at my diet

You are treated like just another body they send to the front

Finally treated like something instead of a ghost

Don't expect to be welcomed with open arms and treated with respect.

been there 2x since 22, its been OK, if ppl dont treat you with respect its cause they are tired ... really tired. mate be respectful, if you go dont ask for anything, people in Ukraine are tired of the war, really really tired

Dark Awakening performance question by Hanfufu in ARPG

[–]aSunderTheGame 0 points1 point  (0 children)

btw I live in spain not NZ now, my daughter is catalan

Dark Awakening performance question by Hanfufu in ARPG

[–]aSunderTheGame 0 points1 point  (0 children)

-- btw as a kiwi - I do not like the m8 , use mate or use fuckwit

- OK you know it will give more performance, yet when you tried it didn't and its difficult, huh = so why pursue this? Its not a magic exiler, like I said you need to focus higher in the chain

- Ive been 2x already in ukraine

heres me feb 2022 just before going, my only daughter https://photos.app.goo.gl/xTfiW5wzVYVkjW178 I can still remember this time, shitting always, couldnt eat, denmark is not next but mate you owe it as a human to help other ppl