I named this guy Fatty McFatfuck. Fatty is on a mission to find more cupcakes, and since he is in a hurry to stuff his fat face, Fatty will always choose the shortest path he sees at any given intersection. Fatty is also retarded. He can’t remember where he has been and never realizes that there are no fucking cupcakes. However, he does know to not go backwards unless he absolutely has to.
Gawd fatty ur so fat. It’s OK. I made a track that will allow him to walk forever. That should slim him up.
Th…this cannot be! This is too early… the prophecy foretold this same event would happen, but that was for in 2 years! We could be dealing with a monster here.
It’s interesting to see he follows a path. As for something that goes from a to b, tricxta already made something doing it. I hacked it to make a path generator.
[QUOTE=2ndwolf;115176]It’s interesting to see he follows a path. As for something that goes from a to b, tricxta already made something doing it. I hacked it to make a path generator.[/QUOTE]
Well I kinda wanted to give hosler more ideas to play with if he was planning to continue. I dunno what tric really does (sry tric), so I didn’t know about that before you said it.
[QUOTE=Yggdrasil;115179]Well I kinda wanted to give hosler more ideas to play with if he was planning to continue. I dunno what tric really does (sry tric), so I didn’t know about that before you said it.[/QUOTE]
What I do: I’m a software engineer, I just code stuff
What I made in respect to what 2ndwolf is talking about: I implemented the A star path finding algorithm a while back
Also… in respect to arrays, I prefer string lists over arrays as you get everything arrays offer plus a bunch of methods for support and because they’re strings you can do really hackish things to address them which is fantastic given there’s a limit to a script’s size for it to work online.
Is the script size for individual scripts or total scriptsize for the entire level? If it’s individual just use multiple scripts seeing as level strings cover the entire level anyway.
I’m keeping the tiled path so I don’t have to search the entire board. Should make it fast too. Gonna use dijkras since that’s the only one I can remember off the top of my head.
[QUOTE=HandupOnYoHip;115183]
Is the script size for individual scripts or total scriptsize for the entire level? If it’s individual just use multiple scripts seeing as level strings cover the entire level anyway.
[/QUOTE]
Level size doesn’t appear to be capped, so only script-size per npc. Also sure, I’ve done similar things where I’ve used a npc-weapon as a database purely for lengthy strings and then another npc-weapon calls it to retrieve and process them. Having to rely on such things often leads to alot of bugs though as you have to account for latency and what not.
[QUOTE=2ndwolf;115182]
is software engineer your daily job/study subject?
If so, I always wonder: What’s the part of a software engineer in a project?
[/QUOTE]
I’m set to graduate at the end of this year, however software engineers usually take care of planning architectures as well as implementation from what I’ve seen in my work experience. However, I suppose it could all be varied.