Blockland Forums > Modification Help
Question(s)
Placid:
--- Quote from: lilboarder32 on March 24, 2011, 09:32:10 PM ---I like how if the client doesn't exist, you attempt to message it :).
Change:
--- Code: ---$GunMod::Loadout[%c.getBLID] = $GunMod::Loadout[%c.getBLID] + %c.player.tool[%i].getname();
--- End code ---
to
--- Code: ---$GunMod::Loadout[%c.getBLID] = $GunMod::Loadout[%c.getBLID] SPC %c.player.tool[%i].getName();
--- End code ---
And
--- Code: ---%player.tool[%i] = %tool.getID;
--- End code ---
to
--- Code: ---%player.tool[%i] = %tool.getID();
--- End code ---
--- End quote ---
oops, meant %c.player, fixed
and thanks. i'll test it later.