Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Announcements (https://forums.graalonline.com/forums/forumdisplay.php?f=240)
-   -   GS3 conversion tool (Updatedx2) (https://forums.graalonline.com/forums/showthread.php?t=134268330)

Julien 06-19-2013 10:09 AM

Quote:

Originally Posted by Gunderak (Post 1719409)
No, it converts it with errors.
The main problem is the md5, the rest I could convert myself, and did.
How would I reference md5?
It would be cool if we could do something like global::md5() or using namespace global;

OK, fine.
The converter is more an helper tool to learn and play with the GS3 syntax. It automatically converts scripts but only to some extent.

If you want to improve the conversion, you can annotate types like for example the "acc" parameter.
Then, you iterate:
  • Launch the conversion
  • Check the syntax
  • Annotate missing types
    etc...

In order to reference missing global functions, you can use extern declarations.

Example:
HTML Code:

extern global {
  function md4(text : string) : string;
}

function onCreated() : void {
  var result : string = md4("hello world");
}

Note: "md5" was added in the meantime.

Gunderak 06-21-2013 10:54 AM

Quote:

Originally Posted by Julien (Post 1719410)
In order to reference missing global functions, you can use extern declarations.

Example:
HTML Code:

extern global {
  function md4(text : string) : string;
}

function onCreated() : void {
  var result : string = md4("hello world");
}

Note: "md5" was added in the meantime.

Nope, doesn't work.

Julien 06-21-2013 02:25 PM

The "md4" function does not exist, this was just to provide you with an example of how to declare extern global functions.
This code is valid and should not produce any errors when converting or checking syntax online, or when compiling on GS3-enabled NPC servers.

In the meantime, all client-side and server-side global functions and classes are now available for the online conversion tool (including md5 et al.).

If you add //#CLIENTSIDE, you can actually test at the same time the server-side and client-side conversion / syntax.

Admins 06-21-2013 04:08 PM

We have updated the conversion tool and also updated the //#GS3 support on servers but you need to restart the npcserver.

Like Julien said, it's now correctly reporting global functions and types and also supports //#CLIENTSIDE (some functions only exist on server-side or client-side). It also prints some more warnings and fixes some bugs (arrays etc.), improving the support for inline-classes.

If you have any ideas or comments then please let us know :)

scriptless 06-21-2013 05:19 PM

Quote:

Originally Posted by Stefan (Post 1719491)
//#GS3 support on servers but you need to restart the npcserver.

So does this mean it's officially released? And is that all dev servers as-well?

Gunderak 06-22-2013 02:18 AM

Julien, I know md4 doesn't exist in Graal, I tried it with md5, my whole point is, how the hell do you call methods like md5. It just errors that it doesn't exist.

Admins 06-22-2013 04:01 PM

The latest version has been uploaded yesterday to all machines but you might need to restart the npcserver. Normally all global functions should work fine now. There are still some errors though (player.account shows an error), and you are welcome to report problems. We hope to soon use it for important scripts though, like for the iPhone servers.

scriptless 06-22-2013 07:53 PM

Quote:

Originally Posted by Stefan (Post 1719538)
The latest version has been uploaded yesterday to all machines but you might need to restart the npcserver.

When I tried using GS3 it said it was not enabled. I had to add the following line to the sever options to work:

PHP Code:

enablegs3=true 

To anyone who is curious you need to add that flag, as well as restart your server. And to use GS3 just add //#GS3 to the top of the script.

Admins 06-22-2013 09:48 PM

Yes follow the instructions at
http://wiki.graal.net/index.php/Creation/Dev/GScript3

Admins 06-24-2013 09:40 AM

We have fixed object attributes like player.account (TServerPlayer.account), no additional restart required.

Crono 06-24-2013 09:41 AM

graal, using hashtags since npc-server was released :cool:

//#CLIENTSIDE //#YOLO

Fulg0reSama 06-24-2013 10:43 AM

Quote:

Originally Posted by crono (Post 1719638)
graal, using hashtags since npc-server was released :cool:

//#clientside //#yolo

PHP Code:

//#yolo
//#swag 


BlueMelon 06-24-2013 11:51 AM

Quote:

Originally Posted by Fulg0reSama (Post 1719644)
PHP Code:

//#yolo
//#swag 


It is necessary for us on Era to include this in our scripts,
else we're going to have a bad time

Tavelate 06-27-2013 10:54 PM

Quote:

Originally Posted by BlueMelon (Post 1719651)
It is necessary for us on Era to include this in our scripts,
else we're going to have a bad time

I feel outstandingly fortunate not being part of that community.

Fulg0reSama 06-28-2013 03:36 AM

Quote:

Originally Posted by Tavelate (Post 1719938)
I feel outstandingly fortunate not being part of that community.

http://upload.wikimedia.org/wikipedi...bs-up-icon.png


All times are GMT +2. The time now is 01:11 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.