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
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


Messages In This Thread
Can't DL HPL2 - by Kimochii - 04-12-2017, 07:58 PM
RE: Can't DL HPL2 - by Romulator - 04-13-2017, 04:46 AM
RE: Can't DL HPL2 - by Kimochii - 04-13-2017, 12:22 PM
RE: Can't DL HPL2 - by FlawlessHappiness - 04-13-2017, 01:48 PM
RE: Can't DL HPL2 - by Romulator - 04-14-2017, 05:36 AM
RE: Can't DL HPL2 - by Kimochii - 04-14-2017, 09:01 AM
RE: Can't DL HPL2 - by Romulator - 04-14-2017, 10:48 AM
RE: Can't DL HPL2 - by Kimochii - 04-18-2017, 06:53 PM
RE: Can't DL HPL2 - by Mudbill - 04-18-2017, 08:22 PM
RE: Can't DL HPL2 - by Kimochii - 04-19-2017, 04:04 AM
RE: Can't DL HPL2 - by Mudbill - 04-19-2017, 01:38 PM
RE: Can't DL HPL2 - by Kimochii - 04-20-2017, 07:08 PM
RE: Can't DL HPL2 - by FlawlessHappiness - 04-20-2017, 11:31 PM
RE: Can't DL HPL2 - by Kimochii - 04-21-2017, 03:13 AM
RE: Can't DL HPL2 - by Mudbill - 04-21-2017, 07:37 AM



Users browsing this thread: 2 Guest(s)