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


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can't DL HPL2
Kimochii Offline
Junior Member

Posts: 7
Threads: 1
Joined: Apr 2017
Reputation: 0
#1
Can't DL HPL2

As you see from the title, I can not download HPL2 all of the versions on the wiki give me this as an error... And I cant seem to find a way to DL it from the forum itself..
04-12-2017, 07:58 PM
Find
Romulator Offline
Not Tech Support ;-)

Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation: 195
#2
RE: Can't DL HPL2

Link is working for me. If it was down earlier, it should be okay now.

https://fricpub.s3.amazonaws.com/tools/h..._suite.zip

Discord: Romulator#0001
[Image: 3f6f01a904.png]
(This post was last modified: 04-13-2017, 04:47 AM by Romulator.)
04-13-2017, 04:46 AM
Find
Kimochii Offline
Junior Member

Posts: 7
Threads: 1
Joined: Apr 2017
Reputation: 0
#3
RE: Can't DL HPL2

(04-13-2017, 04:46 AM)Romulator Wrote: Link is working for me. If it was down earlier, it should be okay now.

https://fricpub.s3.amazonaws.com/tools/h..._suite.zip

I still get the same error pic of the error

If it is allowed and possible please DL the installer (or whatever it is) and upload it to another file sharing site (google drive?) so I can DL it and then you can delete it..

Actually is it possible that I am region blocked? I live in Bulgaria (in the EU)..
04-13-2017, 12:22 PM
Find
FlawlessHappiness Offline
Posting Freak

Posts: 3,980
Threads: 145
Joined: Mar 2012
Reputation: 171
#4
RE: Can't DL HPL2

Since the editor is free for everyone to download (Correct me if I'm wrong), I see no problem in uploading it somewhere else if some website is causing trouble.

Here's a download link: http://www.mediafire.com/file/5ut7wt2q5d...281%29.zip

Trying is the first step to success.
04-13-2017, 01:48 PM
Find
Romulator Offline
Not Tech Support ;-)

Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation: 195
#5
RE: Can't DL HPL2

Mirroring or hosting it elsewhere should be okay, it's just a matter of whether or not you keep it updated, which I suspect won't be an issue. Hopefully that works out better. If not, we'll see if we can organise it into a different filename or be uploaded to Mega.

Discord: Romulator#0001
[Image: 3f6f01a904.png]
04-14-2017, 05:36 AM
Find
Kimochii Offline
Junior Member

Posts: 7
Threads: 1
Joined: Apr 2017
Reputation: 0
#6
RE: Can't DL HPL2

Thanks a lot guys!
I see in Romulator's signature his discord name? I will add you so I can keep my HPL2 editor updated trough you (if it is not a problem for you and you don't mind it)

p.s. when I try to add you it gives me an error, is it outdated or something?
Here is mine Kimochii x3#8336
04-14-2017, 09:01 AM
Find
Romulator Offline
Not Tech Support ;-)

Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation: 195
#7
RE: Can't DL HPL2

(04-14-2017, 09:01 AM)Kimochii Wrote: Thanks a lot guys!
I see in Romulator's signature his discord name? I will add you so I can keep my HPL2 editor updated trough you (if it is not a problem for you and you don't mind it)

p.s. when I try to add you it gives me an error, is it outdated or something?
Here is mine Kimochii x3#8336

It's extremely unlikely that the HPL2 editor will be updated now, so you should be okay with the reupload FlawlessHappiness has provided. Smile

And my Discord name has changed since. I've been meaning to change it but have just gotten lazy. Tongue Best of luck with your project~

Discord: Romulator#0001
[Image: 3f6f01a904.png]
04-14-2017, 10:48 AM
Find
Kimochii Offline
Junior Member

Posts: 7
Threads: 1
Joined: Apr 2017
Reputation: 0
#8
RE: Can't DL HPL2

I will use this topic instead of creating a new one.
So I started making my story and I seem to get problems..

I try to follow TechOFreak's tutorials of this in YT everything is the same as his, yet nothing happens..

I have a note with the name of "note01" the same is in the .lang file and in the editor, i've set up everything needed for it, but it does not show any title name or message..

I've set up a message for the first door upon interaction and used the in-game option for callback func, it happened 2/3 times and after that (the moment when I added the key and the note) it doesnt happen anymore.. when imo it should show and appear a message whenever I start the map for first time (not continue from where I left)

I've attached the map in a .rar file so you can check for yourself and hopefully find what I miss ._.


Attached Files
.rar   Do you dare.rar (Size: 1.05 MB / Downloads: 119)
(This post was last modified: 04-18-2017, 06:53 PM by Kimochii.)
04-18-2017, 06:53 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#9
RE: Can't DL HPL2

One thing I noticed is that you're using asterisks in your lang file for the names. It's important to remember to never use special characters in the technical names in codes, because these are usually reserved for a specific function or they may disrupt the parsing of the file.

You can NOT use this.
PHP Code: (Select All)
<Entry Name="ItemName_*KeySubName*">*YourKeyName*</Entry

But you CAN use this:
PHP Code: (Select All)
<Entry Name="ItemName_KeySubName">*YourKeyName*</Entry

Further down you have an entry where there is a space between "Name" and the equals sign. I'm not sure if this is an issue or not though, but generally you don't put a space there.

Lastly, judging from your script, there is nothing that "gets the ball rolling" so to speak. You didn't add any callbacks in OnStart or OnEnter, so any other functions will never happen (unless you added the callback via the fields in the level editor). You did set the player's oil to 0 though, so check your inventory if that has actually happened.

(This post was last modified: 04-18-2017, 08:25 PM by Mudbill.)
04-18-2017, 08:22 PM
Find
Kimochii Offline
Junior Member

Posts: 7
Threads: 1
Joined: Apr 2017
Reputation: 0
#10
RE: Can't DL HPL2

I have changed everything in the .lang file and removed the asterisks - nothing changed, nothing happened everything is the same (plus i've removed the spaces between "Name" and the equal sign.

In-game i've set up the door to run a func upon interaction, but it seems like the func does not work? maybe it is the timer that i've made a mistake..

p.s. fixed everything, works damn fine.. i'm tilted af..

this is how .lang file should look like
example of what is wrong and what is right, why is it like that?

On the topic of the door not showing messages I had the problem with the .lang file and a problem with wrong times on the timer (god I love when my head works like a tick-tick clockwork machine)

I am just not sure on a shorter text of the note what to add to directly go to a new page?
Like for example I have "Hello" and I want it instantly to move the next sentence to a new page, was the command <br> ?

BTW Thanks for the help mudbill! you might take this example of .lang file into note for future problems caused (if any).. I just wanted to make it more ordered and simple looking..
04-19-2017, 04:04 AM
Find




Users browsing this thread: 1 Guest(s)