2656
Off Topic / Re: Malware in the pony thread?
« on: January 16, 2013, 10:19:50 AM »wrong
http://forum.blockland.us/index.php?topic=219201.msg6253974#msg6253974
I think you're just copying me.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
wrong
http://forum.blockland.us/index.php?topic=219201.msg6253974#msg6253974
^^^ at least it lets you continue in
hey.. im a scripting noob :P but i was wondering how/if i could make it so when you are holding an item it displays bottomprint on the screen...
(doing it for my resource items add-on i am making, nothing big but helpful for easy RPs)
if you someone could tell me that it would be much appreciated...
function itemImageHere::onMount(%this, %obj)
{
%obj.bottomPrintItemSchedule = schedule(120, 0, bottomPrintItemSchedule, %obj, "YOUR MESSAGE HERE");
Parent::onMount(%this,%obj);
}
function itemImageHere::onUnMount(%this, %obj)
{
cancel(%obj.bottomPrintItemSchedule);
Parent::onUnMount(%this, %obj);
}
function bottomPrintItemSchedule(%obj, %msg)
{
if(isObject(%obj))
{
if(isEventPending(%obj.bottomPrintItemSchedule))
cancel(%obj.bottomPrintItemSchedule);
bottomPrint(%obj.client, %msg);
%obj.bottomPrintItemSchedule = schedule(120, 0, bottomPrintItemSchedule, %obj);
}
}
[img width=800 ]http://i.imgur.com/T4IJ9.jpg[/img]
YUS