Jump to content


GStick

Member Since 26 Nov 2003
Offline Last Active Today, 05:03 AM

Posts I've Made

In Topic: How Loud Is:

Today, 12:01 AM

oh ok then well i guess ill have to find out how loud 200 watts is by building it and cranking it up to the max XD

You can't find out how loud 200 watts is because as people keep trying to tell you it's not a measure of loudness.

 

Here's a simple explanation of speaker watts in relation to volume: http://www.sweetwate...plies-loudness/


In Topic: How Do You Indent?

17 May 2013 - 11:32 PM

I've decided to create a new style. It is called "I've stopped giving a damn" style.

 

/* draw_hexagon_filled( x, y, radius, color, aplha) */ var xx, yy, side_count, radius, angle, i, alpha, col; xx = argument0; yy = argument1;side_count = 6; radius = argument2; angle = 90 col=argument3; alpha = argument4; draw_primitive_begin(pr_trianglefan); draw_set_color(col); draw_set_alpha(alpha); for (i=0; i<360; i+=360/side_count) { draw_vertex(xx + lengthdir_x(radius, i + angle), yy + lengthdir_y(radius, i + angle)); } draw_vertex(xx + lengthdir_x(radius, angle), yy + lengthdir_y(radius, angle)); draw_primitive_end(); draw_set_color(c_black); draw_set_alpha(1);

There... much better.

Too much whitespace.

 

/*draw_hexagon_filled(x,y,radius,color,aplha)*/var xx,yy,side_count,radius,angle,i,alpha,col;xx=argument0;yy=argument1;side_count=6;radius=argument2;angle=90;col=argument3;alpha=argument4;draw_primitive_begin(pr_trianglefan);draw_set_color(col);draw_set_alpha(alpha);for(i=0;i<360;i+=360/side_count){draw_vertex(xx+lengthdir_x(radius,i+angle),yy+lengthdir_y(radius,i+angle));}draw_vertex(xx+lengthdir_x(radius,angle),yy+lengthdir_y(radius,angle));draw_primitive_end();draw_set_color(c_black);draw_set_alpha(1);

In Topic: Variables Created Before Declaration?

17 May 2013 - 05:49 AM

That is strange. Tested it out and you're absolutely right. It didn't work that way in 8.1... just tested it in both to make sure.


In Topic: How Do You Indent?

17 May 2013 - 12:21 AM

I don't know about you guys, but when I indent I use the tab key.  Except on the forums cause the forums doesn't like when I use the tab key.

I use the tab key but I tab with spaces.


In Topic: How Do I Switch Rooms After I Destroy Something

15 May 2013 - 09:58 PM

Could you please be more detailed with your question? Such as the problem you're having, what exactly it is you're trying to have occur in the game, and what you've already attempted? It would be a lot easier for people to help you that way.