Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 4 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
HPL3
Thomas Offline
Frictional Games

Posts: 2,634
Threads: 184
Joined: Apr 2006
Reputation: 68
#37
RE: HPL3

Quote:I'm wondering, is most of the script functions in hpl2 is carried over to hpl3? If they are, do work the same as in hpl2 or they are slightly changed.

Just about all of them are there, but syntax is different in order to make auto-complete easier.

So for instance SetEntityActive(...) is now Entity_SetActive(...)

You could make porting really easy by just making a script file that wraps all the new functions with the old file names, eg:

SetEntityActive(string s, bool x){
Entity_SetActive(s, x);
}

And then include that on top of the script file and you got 90% of the porting done. Smile But that might make things a bit messy if you wanna update later on + take advantage of all the new stuff.

The good thing about HPL3 modding is that it is really easy for users that add new features. For instance could pretty much have a few (or even just one) script file that sets the game up in 2D platformer mode. Then that can be easily passed around and used by other people. I am hoping to see many user made helper script files that has common events, etc which makes it easy for first timers to just add stuff to a map without much knowledge.

REALLY excited to see modding, so gonna put extra effort into making it all as smooth as possible.

Quote:I assume a wiki page will be made with them all
Actually all of the basic funcs are all coded in script files. So if you wanna use entity funcs you just included "helper_entity", etc. And most of those functions are fully documented right now (hope have all by release). So no need for a wiki page. For functions defined in c++ there is a special file that lists em all (generated by exe).
03-16-2015, 02:06 PM
Find


Messages In This Thread
HPL3 - by Paddy™ - 08-15-2014, 07:01 AM
RE: HPL3 - by Macgyverthehero - 08-15-2014, 06:13 PM
RE: HPL3 - by Paddy™ - 08-15-2014, 07:14 PM
RE: HPL3 - by Macgyverthehero - 08-15-2014, 11:31 PM
RE: HPL3 - by Paddy™ - 08-17-2014, 07:59 PM
RE: HPL3 - by Cuyir - 08-16-2014, 03:58 AM
RE: HPL3 - by MrBehemoth - 08-20-2014, 10:29 PM
RE: HPL3 - by Statyk - 08-23-2014, 04:43 AM
RE: HPL3 - by Macgyverthehero - 08-23-2014, 06:01 PM
RE: HPL3 - by Statyk - 08-24-2014, 03:08 AM
RE: HPL3 - by Paddy™ - 08-24-2014, 06:10 AM
RE: HPL3 - by Macgyverthehero - 08-24-2014, 05:41 PM
RE: HPL3 - by MsHannerBananer - 08-24-2014, 10:15 PM
RE: HPL3 - by PancakeSyndr0m3 - 08-27-2014, 08:44 PM
RE: HPL3 - by Ashtoreth - 11-23-2014, 08:52 PM
RE: HPL3 - by Straxedix - 11-23-2014, 09:10 PM
RE: HPL3 - by GrAVit - 11-24-2014, 04:13 PM
RE: HPL3 - by Paddy™ - 12-30-2014, 08:30 PM
RE: HPL3 - by GrAVit - 01-01-2015, 01:29 AM
RE: HPL3 - by Newsman Waterpaper - 01-01-2015, 07:37 PM
RE: HPL3 - by Romulator - 01-02-2015, 08:26 AM
RE: HPL3 - by GrAVit - 01-03-2015, 05:05 PM
RE: HPL3 - by Paddy™ - 03-02-2015, 03:22 AM
RE: HPL3 - by veraziul - 03-02-2015, 01:21 PM
RE: HPL3 - by Googolplex - 03-02-2015, 07:29 PM
RE: HPL3 - by Kein - 03-03-2015, 11:15 AM
RE: HPL3 - by Thomas - 03-03-2015, 08:49 PM
RE: HPL3 - by Paddy™ - 03-03-2015, 11:45 PM
RE: HPL3 - by Googolplex - 03-04-2015, 05:43 PM
RE: HPL3 - by PythonBlue - 03-04-2015, 12:49 AM
RE: HPL3 - by Thomas - 03-04-2015, 08:48 AM
RE: HPL3 - by Paddy™ - 03-04-2015, 05:53 PM
RE: HPL3 - by Newsman Waterpaper - 03-15-2015, 12:34 PM
RE: HPL3 - by Googolplex - 03-05-2015, 06:11 PM
RE: HPL3 - by 7heDubz - 03-15-2015, 06:41 PM
RE: HPL3 - by PythonBlue - 03-16-2015, 09:03 AM
RE: HPL3 - by Thomas - 03-16-2015, 02:06 PM
RE: HPL3 - by Neelke - 03-16-2015, 02:13 PM
RE: HPL3 - by Koopa Rs07 - 05-29-2015, 06:10 PM
RE: HPL3 - by Slanderous - 05-29-2015, 06:18 PM
RE: HPL3 - by Koopa Rs07 - 05-29-2015, 06:24 PM
RE: HPL3 - by jmitchell - 05-29-2015, 07:25 PM
RE: HPL3 - by Koopa Rs07 - 05-29-2015, 07:31 PM
RE: HPL3 - by Traggey - 05-29-2015, 07:31 PM
RE: HPL3 - by jmitchell - 05-29-2015, 07:51 PM
RE: HPL3 - by Traggey - 05-30-2015, 12:48 PM
RE: HPL3 - by Alex Ros - 05-30-2015, 01:42 PM
RE: HPL3 - by Romulator - 05-30-2015, 01:48 PM
RE: HPL3 - by Slanderous - 05-30-2015, 01:54 PM
RE: HPL3 - by Traggey - 05-30-2015, 06:01 PM
RE: HPL3 - by Seneth - 06-05-2015, 07:12 PM
RE: HPL3 - by Romulator - 06-06-2015, 04:56 AM
RE: HPL3 - by Paddy™ - 08-01-2015, 03:46 PM
RE: HPL3 - by jmitchell - 09-02-2015, 11:01 PM
RE: HPL3 - by Romulator - 09-03-2015, 10:53 AM
RE: HPL3 - by Newsman Waterpaper - 09-03-2015, 09:27 PM
RE: HPL3 - by Slanderous - 09-03-2015, 10:03 PM
RE: HPL3 - by PathOS - 09-03-2015, 10:45 PM
RE: HPL3 - by OminousHorror - 09-07-2015, 05:19 PM
RE: HPL3 - by Thomas - 09-08-2015, 07:08 PM
RE: HPL3 - by TiManGames - 09-08-2015, 07:33 PM
RE: HPL3 - by Slanderous - 09-08-2015, 08:16 PM
RE: HPL3 - by Thomas - 09-08-2015, 09:36 PM
RE: HPL3 - by Neelke - 09-09-2015, 08:11 AM
RE: HPL3 - by Romulator - 09-09-2015, 08:35 AM
RE: HPL3 - by Patrik - 09-09-2015, 10:09 AM
RE: HPL3 - by 7heDubz - 09-09-2015, 10:39 AM
RE: HPL3 - by Paddy™ - 09-09-2015, 12:14 PM
RE: HPL3 - by PutraenusAlivius - 09-09-2015, 12:47 PM
RE: HPL3 - by Slanderous - 09-09-2015, 01:25 PM
RE: HPL3 - by Radiance - 09-09-2015, 08:29 PM
RE: HPL3 - by Koopa Rs07 - 09-10-2015, 04:49 PM
RE: HPL3 - by Radiance - 09-10-2015, 06:40 PM
RE: HPL3 - by Traggey - 09-10-2015, 06:58 PM



Users browsing this thread: 1 Guest(s)