Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting > Code Gallery
FAQ Members List Calendar Today's Posts

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 02-21-2011, 09:01 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Line drawing tool

Published by request. Draws lines using Chompy's and Sales' DrawLine() function. Hold ctrl and drag yer mouse through Graal, wee~

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
this.draw false;
  
this.ox nil;
  
this.oy nil;
  
this.iIndex 0;
}

// erase drawn lines
function onEraseLines()
  
hideImgs(0199);

// mouse stuff
function GraalControl.onMouseDown(kmod) {
  if (
kmod in |48|) { // ctrl
    
this.draw true;
    
this.ox mousex;
    
this.oy mousey;
    
    
cancelEvents("EraseLines");
  }
}

function 
GraalControl.onMouseUp() {
  if (!
this.draw)
    return;
  
  
this.draw false;
  
cancelEvents("EraseLines");
  
scheduleEvent(3"EraseLines"nil);
}

function 
GraalControl.onMouseDragged() {
  if (!
this.draw)
    return;
  
  
temp.dx abs(this.ox mousex);
  
temp.dy abs(this.oy mousey);
  
temp.d  = (temp.dx temp.dy 2) ^ 0.5;
  if (
temp.0.1) {
    
temp.this.iIndex;
    
temp.0.5;
    
    
DrawLine(temp.ithis.oxthis.oymousexmousey16);
    
changeImgColors(temp.i1111);
    
changeImgVis(temp.i3);
    
    
this.iIndex++;
    
this.iIndex %= 200;
    
    
this.ox mousex;
    
this.oy mousey;
  }
}


// draw-a-line - thanks Chompy & Sales
// http://forums.graalonline.com/forums/showthread.php?t=78427
function DrawLine(idxsxsytxtyw) {
  
= (== nil 16 w);
  
temp.ang getangle(tx sxty sy) + pi 2;
  
  
showPoly(idx,
    { 
sxsy,
      
txty,
      
tx cos(ang) * wty sin(ang) * w,
      
sx cos(ang) * wsy sin(ang) * w  });

Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 02:18 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.