Not logged inOpenClonk Forum
Up Topic Goal can it work?

This board is threaded (i.e. has a tree structure). Please use the Reply button of the specific post you are referring to, not just any random button. If you want to reply to the topic in general, use the Post button near the top and bottom of the page.

Post Reply
In Response to Zapper
Mh, one reason could be that the Library_Goal does something itself in the function Initialize() and you overwrite that function with your own Initialize().
You can call the original Initialize() with _inherited.
Your Initialize() would then look like that:

protected func Initialize()
{
  orangepoints = 0;
  whitepoints = 0;
  return _inherited();
}

Powered by mwForum 2.29.7 © 1999-2015 Markus Wichitill