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
Combining script isn´t working. Please help
Timotej Offline
Junior Member

Posts: 5
Threads: 2
Joined: Aug 2012
Reputation: 0
#1
Combining script isn´t working. Please help

Hey everyone
I am trying to make a script of combining an obsidian("rock") and a guiding rod ("stick") to make a hammer.
Unfortunately, the script isn´t working. Can you tell me where´s the problem?

My inventory.hps looks like this.


void OnStart()
{
AddCombineCallback("", "stick", "rock", "CombineFunc", true);
}
void CombineFunc(string &in asItemA, string &in asItemB)
{
PlayGuiSound("15_make_hammer", 1.0f);
RemoveItem("stick"); RemoveItem("rock");
GiveItem("stone_hammer", "Puzzle", "stone_hammer", "stone_hammer.tga", 0);
}
(This post was last modified: 08-09-2012, 10:01 PM by Timotej.)
08-09-2012, 08:58 PM
Find
Melvin Offline
Member

Posts: 245
Threads: 38
Joined: Jun 2012
Reputation: 5
#2
RE: Combining script isn´t working. Please help

void OnStart()
{
AddCombineCallback("", "stick", "rock", "CombineFunc", true);
}

void CombineFunc(string &in asItemA, string &in asItemB)
{
PlayGuiSound("15_make_hammer", 1.0f);
RemoveItem("stick");
RemoveItem("rock");
GiveItem("stone_hammer", "Puzzle", "stone_hammer", "stone_hammer.tga", 0);
}


void OnLeave()
{
}


This should work, if not, try looking into your leveleditor for typos or capital letters.
what exactly isn't working? Can you be a little more specific?

[Image: 25F7U37.png]
08-09-2012, 10:47 PM
Website Find
Timotej Offline
Junior Member

Posts: 5
Threads: 2
Joined: Aug 2012
Reputation: 0
#3
RE: Combining script isn´t working. Please help

(08-09-2012, 10:47 PM)SmokeMelvin Wrote: void OnStart()
{
AddCombineCallback("", "stick", "rock", "CombineFunc", true);
}

void CombineFunc(string &in asItemA, string &in asItemB)
{
PlayGuiSound("15_make_hammer", 1.0f);
RemoveItem("stick");
RemoveItem("rock");
GiveItem("stone_hammer", "Puzzle", "stone_hammer", "stone_hammer.tga", 0);
}


void OnLeave()
{
}


This should work, if not, try looking into your leveleditor for typos or capital letters.
what exactly isn't working? Can you be a little more specific?
I tried this and it is still saying "Combination does not work"
08-10-2012, 10:46 AM
Find
Fearlessagent Offline
Junior Member

Posts: 12
Threads: 2
Joined: Jul 2012
Reputation: 1
#4
RE: Combining script isn´t working. Please help

(08-10-2012, 10:46 AM)Timotej Wrote:
(08-09-2012, 10:47 PM)SmokeMelvin Wrote: void OnStart()
{
AddCombineCallback("", "stick", "rock", "CombineFunc", true);
}

void CombineFunc(string &in asItemA, string &in asItemB)
{
PlayGuiSound("15_make_hammer", 1.0f);
RemoveItem("stick");
RemoveItem("rock");
GiveItem("stone_hammer", "Puzzle", "stone_hammer", "stone_hammer.tga", 0);
}


void OnLeave()
{
}


This should work, if not, try looking into your leveleditor for typos or capital letters.
what exactly isn't working? Can you be a little more specific?
I tried this and it is still saying "Combination does not work"
OnStart() should be OnGameStart() in inventory.hps
08-13-2012, 09:14 PM
Find
Timotej Offline
Junior Member

Posts: 5
Threads: 2
Joined: Aug 2012
Reputation: 0
#5
RE: Combining script isn´t working. Please help

(08-13-2012, 09:14 PM)Fearlessagent Wrote:
(08-10-2012, 10:46 AM)Timotej Wrote:
(08-09-2012, 10:47 PM)SmokeMelvin Wrote: void OnStart()
{
AddCombineCallback("", "stick", "rock", "CombineFunc", true);
}

void CombineFunc(string &in asItemA, string &in asItemB)
{
PlayGuiSound("15_make_hammer", 1.0f);
RemoveItem("stick");
RemoveItem("rock");
GiveItem("stone_hammer", "Puzzle", "stone_hammer", "stone_hammer.tga", 0);
}


void OnLeave()
{
}


This should work, if not, try looking into your leveleditor for typos or capital letters.
what exactly isn't working? Can you be a little more specific?
I tried this and it is still saying "Combination does not work"
OnStart() should be OnGameStart() in inventory.hps
Still not working.
08-14-2012, 10:47 PM
Find
Your Computer Offline
SCAN ME!

Posts: 3,456
Threads: 32
Joined: Jul 2011
Reputation: 235
#6
RE: Combining script isn´t working. Please help

Where'd you put your inventory.hps file?

Tutorials: From Noob to Pro
08-14-2012, 10:53 PM
Website Find




Users browsing this thread: 1 Guest(s)