Everything posted by PUNISHER
-
Woot! I'm so close on stats, m4 baby
Thats because while I use the m4 I jump right into the middle of everything. The more enemies the better. I take nomen and get off 2-3 clips and still survive sometimes. its pretty funny.I play under alias to watch people and try different setups and settings. besides aliases are fun, as G pointed out.
-
Haven't had to do this in awhile :0
I'd like for us to make some sort of "probation" status for players. Maybe lasting a month or two.When they are under probation if they screw up(just once) they are gone for good.I haven't played with AK in a long long time, if I'm even thinking of the wrong guy...However, I've heard he's good and respected player so I see no point in banning him if he apologised and admitted he was wrong, especially if its been a year since the matter...
-
CS:source crashes to desktop
Well I reinstalled steam and redownloaded CS:source and it still crashes.Yesterday I played it for about half an hour then it crashed for no apparent reason.I searched online and found that alot of people are having this problem. They said if you run CS in a window you can see that it gives a memory address error. However The same people have tested their memoery and it came out fine, mine tested good as well...I'm confused on why the game runs great for a while then just crashes, this happens to me with Doom3 as well...I have tried the drivers from Gainward(my card) and Nvidias.I'll try the reoultion thing that Mac said but I get the feeling thats not it...Anyway, FA is more fun so I don't really care, I just hope I don't have the same problem with HL2 singleplayer.On a side note, I have 512mb stick of Corsair DDR400, my brother tells me XP uses over 200MB of that...If I purchased another stick of 512 could this possibly fix the memory errors?Thanks for your input guys,
-
Haven't had to do this in awhile :0
let the man play please.Besides that screenshot makes me laugh.Calls a guy a ____ then tells him to suck his ____ lol stupid...
-
Woot! I'm so close on stats, m4 baby
A while back I wanted to see if I could hold a k/d ratio of 3.0 while also holding a kpm of 2.0I'm almost there Currently have a k/d of 2.93 and a kpm of 2.01 :twisted: Also have 1995 m4 kills, love this gun, with a full skill loadout I think its equal to the famas!
-
CS:source crashes to desktop
Why the hell is it I always have problems with crap like this...
-
CS:source crashes to desktop
Anyone esle have this problem?The game runs great, over 100fps but then it crashes.any help would be nice
-
HL2 Question
OMG, i was 90% done and its errors up and says game not available!AHHHHHHHHHHHHHHH
-
HL2 Question
I bought the silver version.Hope it works out ok,Am currently downloading CS: source
-
HL2 Question
I can download the game as many times as i need to correct?Like if I have to reformat?
- small C++ question
-
small C++ question
Well I'm starting to understand this stuff. I've completed my homework except for 1 thing, WOOT!Assignment is to write a program where I input sales amounts until I enter -1I have everything correct except the calculations to figure out the low sales amount.Can you tell me what I'm doing wrong.#include <iostream>#include <iomanip>#include <cmath>using namespace std;int main () {int sales;double highSalesAmount = 0,lowSalesAmount = 0,averageSalesAmount = 0,numberOfSales = 0,totalSales = 0;// setup floating point format for output of dollarscout.setf (ios::fixed, ios::floatfield);cout << setprecision (2);// display headings and column heading linescout << "Acme Sales Report Program\n"<< "Enter the next sales or -1 to quit: ";cin >> sales;// main loop - process all input lines in the filewhile (sales >= 0){numberOfSales++;totalSales += sales;averageSalesAmount = totalSales / numberOfSales;if (sales > highSalesAmount){ highSalesAmount = sales;}if (sales < highSalesAmount){lowSalesAmount = sales;}cout << "Enter the next sales or -1 to quit: ";cin >> sales;if (sales < 0 ){cout << "Acme Sales Summary\n"<< "The high sales for today was : " << highSalesAmount << endl<< "The low sales for today was : " << lowSalesAmount << endl<< "The average sales for today was : " << averageSalesAmount << endl;}}return 0;}Thanks again,Dom
-
HL2 Question
hmm, I'm debating about getting HL2 bronze or just waiting for a hard copy
-
HL2 Question
I see the different versions offer different source codes like DoD source HL source, and CS source.Does this mean DoD isn't free now? As in no free downloads on line when it comes out?And, whats the point of having HL source?
-
HL2 steam offers ready thursday (News comment)
So you guys have played the new CS?I'm a little confused... ? ? ?
-
HAHA the Cards STINK!
Cardianls vs Red Sox in world series!Cards sweep 4-0!
-
HL2 steam offers ready thursday (News comment)
So will CS be playable or will it not be ready until HL2 comes out?
-
Help C++ program
#include <iostream> #include <cmath> #include <iomanip> using namespace std; int main() { cout.setf (ios::fixed, ios::floatfield); cout.setf (ios::showpoint); char limit = 0; double squareRoot, cubeRoot, x; cout << "Enter a number greater than or equal to 1, enter 0 to quit: "; cin >> limit; x = limit; do { squareRoot = sqrt(x);cubeRoot = pow(x, -3);//here goes code to figure out square and cube root cout << "Number Square Root Cube Root"; cout << limit << setprecision(4) << squareRoot << cubeRoot; x = x - 1; //this line is very important }while (x > 0);return 0; }I have this now but it is an infinite loop
-
Help C++ program
Thanks for the help Hayabusa.But I'm still not getting it...omg I'm seriously about ready to cryI don't even know how to find the cube root.I'm in class right now trying to put it all together but I don't get it...I have to write 2 more on the same subject and I can't even get the 1st one
-
Help C++ program
What I'm not understanding is how I output for all the numbers between 1 and my input number.
-
Help C++ program
Here's what I have so far.../*The user wishes to make a table of square roots and cube roots for whole numbers from one tosome upper value that the user chooses. Write a program that prompts and inputs the user'schoice of an upper limit. Then, from one to that number, display the current number, square rootand cube root of that current number. Display the results in columns as shown:Number Square Root Cube Root1 1.0000 1.00002 1.4142 .....and so on through the number entered by the user. Repeat the process until the user enters anegative number or a zero.*/#include <iostream>#include <cmath>#include <iomanip>using namespace std;int main(){ cout.setf (ios::fixed, ios::floatfield); cout.setf (ios::showpoint); char limit = 0; long squareRoot, cubeRoot; cout << "Enter a number greater than or equal to 1, enter 0 to quit: " cin >> limit; while (limit >=1 && number != 0) { cout << "Number Square Root Cube Root"; cout << number << setprecision(4) << squareRoot << cubeRoot; cout << endl << endl; cout << "Enter a number greater than or equal to 1, enter 0 to quit: " cin >> number; } return 0;}
-
Help C++ program
Wow,I read the whole chapter for the program i have to right and I have no idea what Hayabasa is talking about.I use MVS.net 2003
-
HAHA the Cards STINK!
Does that mean Kywalker is a Yankees fan?
-
Help C++ program
I have to write a program where I input a number greater than or equal to 1.I then have to display the square root and cube root of all the whole numbers from 1 to the number entered.I'm really stuck here, I have no idea how to setup my while statement.Can somebody help me out?
-
HAHA the Cards STINK!
YEP Boja probably looks best in pink