The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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 items not responding
ApeCake Offline
Member

Posts: 116
Threads: 20
Joined: Jun 2012
Reputation: 4
#1
Combining items not responding

I was wondering if it was possible to show a custom-made message when trying to combine two items. Instead of "Combination does not work!" I want it to say "There is no need to combine these two.". I want it this way so when the player picks up a needle and a copper tube they don't instantly try to combine them and get confused when they don't get combined and think the map is bugged. I don't want the copper tube and the needle to get combined, you need them for individual things. The only thing I got so far is;

void OnStart()
{
AddCombineCallback("needle_tube", "hollow_needle", "copper_tube", "nocombineCN", false);
}


void nocombineCN(string &in asItemA, string &in asItemB)
{
//I am not sure if this is the right code for displaying the combining message
SetInventoryMessage("Messages", "nocombine", 5);

}

But when I try to combine the two nothing happens, even the "Combination does not work!" doesn't show up. I double checked and as far as I am aware are the names the same. Some help would be appreciated.
07-06-2012, 02:25 PM
Find


Messages In This Thread
Combining items not responding - by ApeCake - 07-06-2012, 02:25 PM
RE: Combining items not responding - by drunkmonk - 07-06-2012, 02:33 PM
RE: Combining items not responding - by Cruzore - 07-06-2012, 03:00 PM
RE: Combining items not responding - by ApeCake - 07-06-2012, 10:51 PM
RE: Combining items not responding - by Damascus - 07-07-2012, 02:42 AM



Users browsing this thread: 1 Guest(s)