Package the dropping function and remove it from ones hand for a fix?
yep ^^^ thanks!
EDIT: i think i figured out what was fixing the drop function for custom gamemode... im testing it now, but im pretty sure its gsf's backpack mod.
ANOTHER EDIT: yep, leave it to gsf to fix my addons on accident, i added (and simplified) the code for use on my weps, for anyone who's interested (or having a similar problem) here it is:
//drop debug
function serverCmddropTool(%client, %slot)
{
%player = %client.player;
if(isObject(%player))
{
%client.player.unMountImage(0);
parent::serverCmddropTool(%client, %Slot);
}
}
Just do this:
if($Sky::VignetteColor !$= "")
%vignetteColor = $Sky::VignetteColor;
else
%vignetteColor = "0 0 0 0";
Pretty sure you should be using $Sky:: and not $EnvGuiServer::
i almost forgot about this, what you said works, but has the same results as before, not recegnising the A value of RGBA, but no big deal, its minor, im using $sky now, just because im too lazy to change it back and it really is no different from $EnvGuiServer...