Tried to get an efficient inventory script.
I gave up and decided to make my own (its a lot harder than it sounds).
This is my inventory script the problem is that i can’t seem to press a button to show the inventory.
Inventory.js:
var buttonTexture : Texture;
var BoxTexture : Texture;
var thing1 : Texture;
var thing2 : Texture;
var copper : int;
var silver : int;
var gold : int;
var addCopper : int;
var Totalcopper : int;
function Update () {
Totalcopper = copper + addCopper;
}
function OnGUI () {
if (GUI.Button( Rect(10, 50, 33, 33), buttonTexture)) {
GUI.Box( Rect( 300, 0, 150, 200), BoxTexture);
(GUI.Button( Rect( 300, 180, 150, 20), Totalcopper + "c"));
}
}
function CopperRecieved (Interger : int) {
addCopper = Interger;
}
function Thing1Recieved (Thing : Texture) {
thing1 = Thing1;
}
function Thing2Recieved (Thing2 : Texture) {
thing2 = Thing2;
}