Everything posted by Kamikaze
-
Who Has Visited The Forums in The Last 24 hrs.
ahh, ElektrA I'm an assir nub now and I bugged BDH enough to get a custom FA Forums title much wvu
-
Server down?
no you wouldn'tyou'd just to, omg, install steam on it
-
The end of the TA server?
http://www.fileplanet.com/files/130000/130206.shtml
-
The official "Questions about Steam" thread
there are several serversyou just need to look
-
Steam download slow?
go to the FA forums and find wolferine's steam faq page, and grab those torrentsthat and the 388 meg installer saved me from downloading anything from steam
-
Steam Installation and Info
if you can, use the 370 plus meg installerincludes the new hl and cs files so you're not caching and downloading foreverthank god for friends with cable
-
Armory's Position on Map Exploits
Norm, you're acting more childish than most of your fellow clan members, which just happen to be more than half your ageGrow up
-
Helm Camming
haha! how fitting! if you want a witness to it, go bug Margs. He was on the server with me and the map was river, and norm was on blue
-
Helm Camming
I can post a screenie of someone helmet camming to give you an ideabut it's a pic of norm
-
Armory's Position on Map Exploits
actuallyI'm sitting here, reading this threadKy actually makes a good valid point, and Norm flames, no constructive criticism, Norm flamesNorm, Ky made a point, be nice and deal with itKy is rightIf one day, I'm playing rubble, end of the map, using the red tank gun to nail the blue campers and Gator says it's ok, then I'll continueNext day, same thing, only say Mac is the admin and he says no, many will become confusedSomeone might get booted or banned because of what one admins says, completely conflicts with what the other admin saysthis policy will only work if there is a general consensus amongst the admins
- NO STEAM!
-
RIAA is mean
your points are better understood when proper grammar and puncutation is used, along with correct spelling. As for "digging their own graves" well, it's to make a point. They sue the people they can, make their point, drop CD prices and all is welloh, for any potential RIAA punks reading thisI currently have several thousand mp3's on my computer, oh wait, I own the CD's they come from and all the others are open licenseshove it
- Match
- How To
-
How To
you need an authserv account as well, so that the channel can identify you as the owner I don't know as much about quakenet though most DoD and CS clans I know use gamesnet anyways and paradigm was right, it's http://www.gamesnet.net
-
Any others out there?
I think J# only comes in either enterprise developer or architect, make sure it's 2003
-
Any others out there?
I have Visual Studio .Net 2003 Enterprise Architect, if you can, try using J#, that might work for java
-
Any others out there?
kami didn't give you the third section of code, aren't I mean?for java, I use JBuilder, right now I'm running JBuilder 7 Enterprise, or JBuilder 6 Enterprise8 and 9 are resource hogs
-
The official "Oooh, ahh" quotes thread.
The thing about the thing that you don't understand about the thing is what the thing is all about
-
Any others out there?
I had a prog like that it was a little shopping cart program user visited a site, and access a remote sql db to order some items most annoying thing about some db's are that you sometimes have to setup the db in windows first, assigning it a name, password, etc then mirror those settings in a program, bleh
-
Last Day of Summer
wait till junior year. wait until college 5 page essays 1 or 2 times a week, with a few 20 page research papers in there as well weee
-
Any others out there?
this was all for a tiny little prog we had to do before we eventually moved on to the final version, which was a java version of pongpretty colors and suchthis is tiny compared to some of the things I've had to do
-
Any others out there?
package bouncingball;import java.awt.*;import java.awt.event.*;import javax.swing.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright © 2002</p> * <p>Company: </p> * @author unascribed * @version 1.0 */public class Paper extends JPanel implements ActionListener { int yPos = 50; Timer tmrAnimate = new Timer(100,this); public Paper() { this.setBackground(Color.white); } public void draw(){ repaint(); } public void animate() { tmrAnimate.start(); } public void actionPerformed(ActionEvent ae) { repaint(); } public void paint(Graphics g){ super.paintComponent(g); g.fillOval(50,yPos,10,10); yPos = yPos + 10; }}
-
Any others out there?
package bouncingball;import java.awt.*;import java.awt.event.*;import javax.swing.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright © 2002</p> * <p>Company: </p> * @author unascribed * @version 1.0 */public class FrameBouncingBall extends JFrame implements ActionListener{Container con = getContentPane();GridLayout gri = new GridLayout(1,3);JButton btnBounce = new JButton("One bounce per click");JButton btnAnimate = new JButton("Animate");Paper paper = new Paper(); //Construct the frame public FrameBouncingBall() { this.setSize(new Dimension(400, 300)); this.setTitle("Bouncing Ball"); con.setLayout(gri); con.add(btnBounce); con.add(paper); con.add(btnAnimate); btnBounce.addActionListener(this); btnAnimate.addActionListener(this); } public void actionPerformed(ActionEvent ae){ if(ae.getSource() == btnBounce){ paper.draw(); }else{ paper.animate(); } } //Overridden so we can exit when window is closed protected void processWindowEvent(WindowEvent e) { super.processWindowEvent(e); if (e.getID() == WindowEvent.WINDOW_CLOSING) { System.exit(0); } }}
-
AA Problems
essentially 18 targets out of 20 each round in other words you can only waste 4 bullets, or miss only 4 targets I kept getting mad because I kept getting 34 or 35