Be a Supporter!
Response to: Homework helper Alpha Posted September 20th, 2011 in Programming

I Fixed bug for properties: when ever i put in "Variable" that means that you have to insert the number of your choice or variable.

here is an example of how to use the commands:
add(a, b)
lets say a = 5 and b = 3
type in
add(5, 3)
also if you want to you can use variables instead of numbers such as:
a = 5
add(a, b)

it is also possible to use equations as variables, such asa = 10
b = a / 2 + 3 * 2
add(a, b)

ALWAYS when using this program, scroll to the bottom of the program and make sure there is a reasonable space between the code and your commands
here is a list of commands:add(a, b)
subtract(a, b)
multiply(a, b)
divide(a, b)
squared(a) <== Squares the number
cubed(a) <== Cubes the number
power(a, b) <== times a by itself b times
squareroot(a) <== finds the square root of a
permrec(a, b) <== put in the lengths of the sides to find the perminiter of a rectangle or square.
permcir(a) <== put in the radius, find the circumfrence of a circle
areacir(a) <== put in radius finds area of circle
permrec(a, b) <== finds area of rectangle
generate(a, b) <== put any two numbers in and it generates a random number between those two.
huge() <== displays infinity
pi() <== displays pi
midpoint(a, b, c, d) <== a and b are x and y in a coordinate plance, same as cd but for a diffrent point. finds the midpoint.
identifyproperty(a, b, c) <== this one is tricky, you have to put in three numbers and it tells the propertys assoiciated with those numbers.

After following the instructions after this, go to the very bottom and start using the commands to help! If you need anymore help go to my facebook page(friends only) and message me for more instructions.
go on http://www.lua.org/cgi-bin/demo and put this in the box:

function add(a, b)
c = a + b
print("The sum of " .. a .. " and " .. b .. " is " .. c)
end

function subtract(a, b)
c = a - b
print("The solution to " .. a .. " - " .. b .. " is " .. c)
end

function multiply(a, b)
c = a * b
print("The Solution of " .. a .. " times " .. b .. " is " .. c)
end

function divide(a, b)
c = a / b
print("The Solution of " .. a .. " divided by ".. b .. " is " .. c)
end

function squared(a)
c = a ^ 2
print("Squaring " .. a .. " gives you " .. c)
end

function cubed(a)
c = a ^ 3
print("Cubing " .. a .. " gives you " .. c)
end

function power(a, b)
c = a ^ b
print("multiply " .. a .. " by itself " .. b .. " times will give you " .. c)
end

function squareroot(a)
c = math.sqrt(a)
print("The square root of " .. a .. " is " .. c)
end

function permrec(a, b)
c = a + a + b + b
print("The perimeter of the rectangle/square is " .. c)
end

function permcir(a)
c = 3.14 * a * a
print("The circumfrence of the circle is " .. c)
end

function areacir(a)
c = a * 2 * 3.14
print("The area of the circle is " .. c)
end

function arearec(a, b)
c = a * b
print("The area of the rectangle/square is " .. c)
end

function generate(a, b)
c = math.random(a, b)
print("The random generated number is " .. c)
end

function huge()
print(math.huge)
end

function pi()
print(math.pi)
end

function midpoint(a, b, c, d)
e = (a + c) / 2
f = (b + d) / 2
print("The midpoint of " .. a .. ", " .. c .. " and " .. b .. ", " .. d .. " is " .. e .. ", " .. f)
end

function distance(a, b, c, d)
h = (c - a) ^ 2
j = (d - b) ^ 2
k = math.sqrt(h + j)
print("The distance between the two points is " .. k)
end

function identifyproperty(a, b, c)
if a + b == c and a + c == b then
print("The Transitive property of Congruence")
print("Since a = b and b = c, then a = c")
end
if a == a then
print("The Reflexive property of Congruence")
print("A is equal to A")
end
if b == b then
print("The Reflexive property of Congruence")
print("B is equal to B")
end
if c == c then
print("The Reflexive property of Congruence")
print("C is equal to C")
end
if a == b then
print("The Subsitution property of Equality")
print("A can replace B in any equation, and B can replace A in any equation.")
end
if a == c then
print("The Subsitution property of Equality")
print("A can replace C in any equation, and C can replace A in any equation.")
end
if c == b then
print("The Subsitution property of Equality")
print("C can replace B in any equation, and B can replace C in any equation.")
end
if a == b then
print("The Symmetric property of Equality")
end
if a == c then
print("The Symmetric property of Equality")
end
if b == c then
print("The Symmetric property of Equality")
end
end

Homework helper Alpha Posted September 19th, 2011 in Programming

when ever i put in "Variable" that means that you have to insert the number of your choice or variable.
here is an example of how to use the commands:
add(a, b)
lets say a = 5 and b = 3
type in
add(5, 3)
also if you want to you can use variables instead of numbers such as:
a = 5
add(a, b)

it is also possible to use equations as variables, such asa = 10
b = a / 2 + 3 * 2
add(a, b)

ALWAYS when using this program, scroll to the bottom of the program and make sure there is a reasonable space between the code and your commands
here is a list of commands:
add(a, b)
subtract(a, b)
multiply(a, b)
divide(a, b)
squared(a) <== Squares the number
cubed(a) <== Cubes the number
power(a, b) <== times a by itself b times
squareroot(a) <== finds the square root of a
permrec(a, b) <== put in the lengths of the sides to find the perminiter of a rectangle or square.
permcir(a) <== put in the radius, find the circumfrence of a circle
areacir(a) <== put in radius finds area of circle
permrec(a, b) <== finds area of rectangle
generate(a, b) <== put any two numbers in and it generates a random number between those two.
huge() <== displays infinity
pi() <== displays pi
midpoint(a, b, c, d) <== a and b are x and y in a coordinate plance, same as cd but for a diffrent point. finds the midpoint.
identifyproperty(a, b, c) <== this one is tricky, you have to put in three numbers and it tells the propertys assoiciated with those numbers.

After following the instructions after this, go to the very bottom and start using the commands to help! If you need anymore help go to my facebook page(friends only) and message me for more instructions.
go on http://www.lua.org/cgi-bin/demo and put this in the box:

function add(a, b)
c = a + b
print("The sum of " .. a .. " and " .. b .. " is " .. c)
end

function subtract(a, b)
c = a - b
print("The solution to " .. a .. " - " .. b .. " is " .. c)
end

function multiply(a, b)
c = a * b
print("The Solution of " .. a .. " times " .. b .. " is " .. c)
end

function divide(a, b)
c = a / b
print("The Solution of " .. a .. " divided by ".. b .. " is " .. c)
end

function squared(a)
c = a ^ 2
print("Squaring " .. a .. " gives you " .. c)
end

function cubed(a)
c = a ^ 3
print("Cubing " .. a .. " gives you " .. c)
end

function power(a, b)
c = a ^ b
print("multiply " .. a .. " by itself " .. b .. " times will give you " .. c)
end

function squareroot(a)
c = math.sqrt(a)
print("The square root of " .. a .. " is " .. c)
end

function permrec(a, b)
c = a + a + b + b
print("The perimeter of the rectangle/square is " .. c)
end

function permcir(a)
c = 3.14 * a * a
print("The circumfrence of the circle is " .. c)
end

function areacir(a)
c = a * 2 * 3.14
print("The area of the circle is " .. c)
end

function arearec(a, b)
c = a * b
print("The area of the rectangle/square is " .. c)
end

function generate(a, b)
c = math.random(a, b)
print("The random generated number is " .. c)
end

function huge()
print(math.huge)
end

function pi()
print(math.pi)
end

function midpoint(a, b, c, d)
e = (a + c) / 2
f = (b + d) / 2
print("The midpoint of " .. a .. ", " .. c .. " and " .. b .. ", " .. d .. " is " .. e .. ", " .. f)
end

function identifyproperty(a, b, c)
if a + b = c and a + c = b then
print("The Transitive property of Congruence")
print("Since a = b and b = c, then a = c")
end
if a = a then
print("The Reflexive property of Congruence")
print("A is equal to A")
end
if b = b
print("The Reflexive property of Congruence")
print("B is equal to B")
end
if c = c
print("The Reflexive property of Congruence")
print("C is equal to C")
end
if a = b then
print("The Subsitution property of Equality")
print("A can replace B in any equation, and B can replace A in any equation.")
end
if a = c then
print("The Subsitution property of Equality")
print("A can replace C in any equation, and C can replace A in any equation.")
end
if c = b then
print("The Subsitution property of Equality")
print("C can replace B in any equation, and B can replace C in any equation.")
end
if a = b then
print("The Symmetric property of Equality")
end
if a = c then
print("The Symmetric property of Equality")
end
if b = c then
print("The Symmetric property of Equality")
end

Response to: Not scouted yet? Share your art Posted July 5th, 2011 in Art

Here is some of my art, to see the rest, go down to my fourm sig area and press Art. Just so you know a couple of them are sketchs, most of my best art is handdrawn but I felt this one was my best pixel Art.

Not scouted yet? Share your art

Response to: Need help working on characters Posted July 2nd, 2011 in Art

At 7/2/11 07:29 PM, test-object wrote: OP, your drawing is but a sketch. At least try your best making it as good as possible. Also, try coming up with original characters, fan-art is fine, but try coming up with an own style of drawing.

The only fan art there was the left one which was Nabi, the other two I completly designed but the one at the right was inspired by vg cats. in this picture I messed up on his head but tommorrow Im gonna upload a new one.

Response to: Need help working on characters Posted July 1st, 2011 in Art

I was able to Resize it.

Need help working on characters

Response to: Need help working on characters Posted July 1st, 2011 in Art

Some of the details I did not add when I make this, but anyway just tell me what I can do to improve and ill draw another picture and post it

Need help working on characters Posted July 1st, 2011 in Art

I started making a character, in this picture there are three of them. The left one is from TSI!! its a version of Nabi. The middle one is a character that comes easy to me to draw. The one at the right is a Character that I worked on for about half a month in order to perfect the style that Scott Ramsoomair uses on Vg Cats, which to this date I have not Perfected. It wont let me Post it because the picture is too big, but heres a link to it: NabiWhoChris

Response to: Whats wrong with you?! Posted June 24th, 2011 in General

At 6/24/11 01:19 PM, SizzleBolt wrote:
At 6/24/11 01:17 PM, paf990 wrote: A few days ago fantastic game has been submited to NG, which current score is... 2.75??????

I loved shellshock till i played this ftw! !!

btw my nick is paf990 (level 19)
You can thank me for lowering it to 2.74

It's boring.

Nice one

Vg Cats Fan Club Posted June 24th, 2011 in Clubs & Crews

This is the place to talk about everything VG Cats!! Post any fanmade or comic pictture of Aeris and/or Leo!( Juat dont post anything innapropiate, sex, etc) Also post any picture of a character that YOU made that you would love to have in a vg cats comic. Just chat and ask about what it is if your looking into it!

What is VG Cats?
Dear Reader, VG Cats is a comic based around the lives of Leo and Aeris, mostly in a video game form. VG Cats tends to make fun of popular games or issues such as Playstation's (I do not own Playstation, it belongs to its owner, more copyrightings, etc) issue of being hacked.

Is VG Cats a comic about furrys?
Dear Reader, VG Cats is not based entirely on furries, mainly its based on characters on which Scott has met or seen a person like. Such as Doctor Hobo is actually is a doctor but dresses up like a hobo in real life. It just happens that Aeris and Leo are really cats so it would make sense to make them Antropomorbic cats.

I do not own VG Cats, It belongs to its respective owner.

Also if I accidently spelt anything wrong, inform me in a private message so I can fix it.

Also a picture of a sketch from its website that you can use to make your own Leo.

Vg Cats Fan Club