Gothic Online Forums
G2O G2O - New beginning - Printable Version

+- Gothic Online Forums (https://archive.gothic-online.com)
+-- Forum: Main (English) (https://archive.gothic-online.com/forum-3.html)
+--- Forum: Announcements (https://archive.gothic-online.com/forum-4.html)
+--- Thread: G2O G2O - New beginning (/thread-1753.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11


RE: G2O - New beginning - Bimbol - 05.09.2016

(05.09.2016, 15:25)Osmith Wrote: And what updates can we expect these functions?
Don't know I have different plans. When magic will be synced, then thoose function will be added.


RE: G2O - New beginning - Nubzior - 21.11.2016

Ok i released version 0.0.5, links are in first post.


RE: G2O - New beginning - Twice. - 22.11.2016

Solving the problem of server startup (Windows)

Open the file items.xml and go to the last line.
Replace <items> on </items> and save.
Now, server should normally run.


RE: G2O - New beginning - Bimbol - 23.11.2016

There is a bug with Packets and currently they didn't work. Please wait for fix.


RE: G2O - New beginning - Bimbol - 03.12.2016

I've got a question for scripters. Do you prefer structured programming or object-oriented?
I mean I'm under implementing some new stuff and I thought that would be nice to create draw like that:
Code:
local draw = Draw("Bla bla bla");
draw.setPosition(7800, 6000);
draw.visible = true;
Instead of:
Code:
local draw = drawCreate(many arguments);
drawSetVisible(draw, true);
So what is your opinion?


RE: G2O - New beginning - Esmero - 03.12.2016

I think 1 option will be better for me.


RE: G2O - New beginning - HammelGammel - 03.12.2016

I'd go for option 0. Seems a lot neater.


RE: G2O - New beginning - Kemi - 03.12.2016

here a quote of julian (headprogrammer of our team)

Quote: The object oriented aproach is much cleaner and if would write code in squirrel i would prefer it.



RE: G2O - New beginning - Twice. - 04.12.2016

First option.


RE: G2O - New beginning - Zmorra - 04.12.2016

If the first option is better for you, I choose the first option.