View Single Post
  #18  
Old 08-20-2011, 12:18 AM
callimuc callimuc is offline
callimuc's Avatar
Join Date: Nov 2010
Location: Germany
Posts: 1,015
callimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to behold
I made a personal backup of the shared folder since it got nice stuff and also script where I think they where pretty good to learn from.

Also I found it. Since it was in that shared folder it shouldnt be a problem sharing it here.
Credits goes so Hoyt (thats how I knew him I don´t know his "real" graal name)

As far as I remember he said that this is only working on v6. I didn´t test it on v5 yet.

Script:
PHP Code:
//Created by Hoyt
//#CLIENTSIDE
function onCreated(){
 new 
GuiDrawingPanel("Test_DrawingPanel"){
  
x=0;
  
y=0;
  
width=screenwidth;
  
height=screenheight;
  
clearall();
  
mode=2;
  
alpha=.8;
  
active=0;
  
drawimagestretched(0,0,screenwidth,screenheight,"hoyt_white.png",0,0,16,16);
 }
 
settimer(0.05);
}
function 
onTimeout(){
 
settimer(0.05);
 
Test_DrawingPanel.width=screenwidth;
 
Test_DrawingPanel.height=screenheight;
 
Test_DrawingPanel.clearall();
 
Test_DrawingPanel.drawimagestretched(0,0,screenwidth,screenheight,"hoyt_white.png",0,0,16,16);
 
Test_DrawingPanel.drawimage(mousescreenx-64,mousescreeny-64,"hoyt_lightgrad2.png");

Output:
Click image for larger version

Name:	1.png
Views:	407
Size:	16.2 KB
ID:	53497

Click image for larger version

Name:	2.png
Views:	419
Size:	16.5 KB
ID:	53498

Click image for larger version

Name:	3.png
Views:	400
Size:	16.7 KB
ID:	53499

I hope thats what you meant
__________________
MEEP!
Reply With Quote