-just speeding up the whole process, the hook shoot, the pull, and the climb
-if you touch material and climb or hangle, and let go again you fall down immediately (while still on your rope), so if you unintentionally touch a small material chunk, you might end up falling down again.
-A tutorial for using /practicing with the windbag would be nice.
-If you are in viewer mode, you cannot zoom with the mouse, just with F5/F6.
> -A tutorial for using /practicing with the windbag would be nice.
The windbag serves as an easter egg in tutorial 7 without explanation. I could add an NPC which explains it. Would that be enough?
>Would that be enough?
Honestly no, the windbag is quite tricky to learn. Actually when I started playing OpenClonk I didn't know what to do with it until I saw other players use it online.
And after that it really took some time to master all the jumps, so a simple level where you have to jump around, while each Jump increases in difficulty slightly would be very helpful to newbies, and in fact to me too :D
Actually yesterday when I played, I still died because of timing those jumps wrong, so I felt like I really could use such a level :((
And don't get me started on deflecting objects like rockets to attack, like K-Pone uses them, though that sorta stuff could probably go into the Tower.
>And don't get me started on deflecting objects like rockets to attack
How. is. that. possible.


But it's probably doable in the editor in 10 minutes or less. A few spots of material, spaced farer and farer apart, a spawn point and a windbag. Off you go. Train as much as you want.
Don't get me wrong, I am not against any useful tutorials to master the game. But we shouldn't have endless scenarios, explaining and training every object and every application in every situation. No one would want to play that, no one would want to create and maintain these. The windbag isn't that important an object. Yes, Hot Ice is played a lot. Yes, using the windbag is essential for that scenario. But apart from that, there are countless scenarios in which you don't ever need a windbag.
Also, no scenario will ever teach you to be as good as K-Pone or similar. He plays OC for years(?), oftentimes Hot Ice variants, probably at least once a week. No scenario would get you to that level of skill. Only practice will.
It's probably fine to have one spot in a tutorial, where the key application of the windbag (shooting at the ground when jumping to jump higher) is explained and applied once.


* Have windbag selected.
* Carry a boompack.
* Aim mouse cursor at target.
* Left mouse click to launch boompack.
* [W] to jump of boompack.
* Left mouse click to use windbag.
Just make sure to perform the last three steps as fast as possible and there is no need to adjust the aiming in between. It is really just pressing [LMB][W][LMB] as fast as possible.
-They are both KoTH, and this game mode doesn't work with Teams well.
-you can kill your Team mates for kills, and be killed by them to save the half dead king
-the points are not added up
-both rounds are KoTH, but have different specific details of how this works (what the king does, how many points), this is not really clear in game and adds to confusion.
-the kill tracing doesn't work very well, especially if you hurt someone and they jump into the underground or in lava. A side effect of this is that people can kill themselves rather than giving you the kill.
-the maps are rather difficult to navigate
-getting weapons from chests is rather slow
And finally in Cauldron: I couldn't climb the top left ladder, because some pixel blocked the top.

Someone once made a round where you gain points while actually IN an area. I think that would be a better KoTH for our rounds.



> -both rounds are KoTH, but have different specific details of how this works (what the king does, how many points), this is not really clear in game and adds to confusion.
That comes from a time when enthusiastic developers thought that people would actually read the scenario description!
It is still hard to tell if the Blunderbuss is loaded or not, so he proposed a background color in the item slot. Like make it slightly red if it is not loaded or something.
This could also apply to the grenade launcher (where it is easier though).
-if you switch items while holding the musket, the loading action will continue
Hide out:
-Our door stopped closing
-too long, map too big, too exhausting
-not visible how many flags to capture
FrozenFortress:
-Instant Kill through IceBall
-IceBall uses Fire Sound
-Respawn zu schnell
-not visible how many flags to capture
Cauldron:
-player got stuck
>-too long, map too big, too exhausting
It isn't big at all. In CR, CMC's Oasis is even bigger and is played with CTF aswell.

> -if you switch items while holding the musket, the loading action will continue
Same goes for the grenade launcher. But I wouldn't see this as a bug. In Hot Ice it is very common to be used to reload while performing windbag-jumps.
> -player got stuck
I think this happens on other maps than cauldron as well.
This is actually the first time I saw the Lava Dude in action, I think we could make it a bit more valuable, suggestions for change:
-only make it petrify when outside of lava
-in turn, always enable walking on the shell side of the LavaDude
-Now make the lavadude move around much less, maybe only floating on top of the lava and turning.
That way we can use it more Mario-like, to cross lava. The way it is now, furiously moving and randomly petrifying we cannot use it like that.
Also his attack:
-I would make it range further, but with much less damage, and without explosion. This way he would hit more often, but less crucial - and that way probably more fun for settling rounds, when you get somewhere near him.
-------
The Mooq:
Doesn't use the sounds I made for the mooq.
-------
Lava bubbles:
If they were smaller, they would probably look better.
> -Now make the lavadude move around much less, maybe only floating on top of the lava and turning.
I think there could be some kind of warning sign one second before it moves. That way, you could plan ahead. We could also add it as a parameter, so the scenario designer can place both aggressive and more passive lava dudes (ideally as a dropdown in the editor).
Can you paste the feedback somewhere where it's not forgotten? I.e. milestone trello board or bugtracker?
- Construction sites could be auto selected in the object interaction menu. It is a bit time consuming to click on "Construction site" each time when adding new building material to a construction site
- The Iron Peak scenario is running really slow on my notebook, probably due to the snow particles. Maybe add a graphic option in the game options that allows the user to limit the number of particles, disable shaders etc.
Keep up the good work!
Edit: Iron Peak works fine now after disabling antialiasing, but smoke particles are still a problem (See attachment)

> The Iron Peak scenario is running really slow on my notebook, probably due to the snow particles.
Unfortunately, the lag is purely happening because of the very complicated area control math (the scenario goal). The effects are not that complicated.


IsFlagpole
on all objects ten times each frame. Also the average of all the samples is calculated by always looping over the full array (of 2000 elements), which is not necessary.


>every time a flagpole is built
It's a bit unfortunate that we don't have a good way to query newly-created objects. A call from the flagpole into the expansion goal would create a rather ugly coupling that is irrelevant for almost all scenarios.
Quick idea: Maybe we could add a
Find_SinceObjectNumber(int num)
that would select all objects with number between [num, EnumerationIndex] (plus some handling for (signed?!) overflow) which (I assume) can be selected efficiently. This would help all periodic FindObjects
calls that select a relatively small set of objects.


FindObjects
is actually not used anymore. I was looking at an old commit from when Maikel worked on the issue linked above. So there's no obvious reason why it would be slow...But still, I think "periodic FindObjects" is a fairly common thing that can currently be hard to optimize, so it might be worthwhile to think of a more general solution that doesn't involve #appendtos and manually-organized object arrays.

Looks like a lot of work to get right in code though (handling holes, etc.)
I don't quite remember how, but you run into trouble with precision. You need to decide where circles touch each other and in which order the intersection points form a polygon, or something…
I think the special cases with holes in the centre and such were comparatively trivial.

Powered by mwForum 2.29.7 © 1999-2015 Markus Wichitill