Author Topic: Grey Bar on Bottom Print  (Read 684 times)

I'm using this to print to a player's screen
Code: [Select]
commandToClient(%this, 'bottomPrint', %this.HudLine, 0, true);How would I get that default grey bar used when bricks bottom print, using this? any quick answers?

the arguments for bottomPrint are message,time*1000,hideBar
you have hideBar set to true

also please use
bottomPrint(%client,message,time,hideBar);
or
%client.bottomPrint(message,time,hideBar);

so that other addons can package over your bottomPrint if they need to


so that other addons can package over your bottomPrint if they need to


Thanks, and it's a mod that's gunna want to not be overwritten