Skip to content
View in the app

A better way to browse. Learn more.

The Armory

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

PUNISHER

Armory Member
  • Joined

  • Last visited

Everything posted by PUNISHER

  1. 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.
  2. 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...
  3. 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,
  4. let the man play please.Besides that screenshot makes me laugh.Calls a guy a ____ then tells him to suck his ____ lol stupid...
  5. 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!
  6. Why the hell is it I always have problems with crap like this...
  7. Anyone esle have this problem?The game runs great, over 100fps but then it crashes.any help would be nice
  8. OMG, i was 90% done and its errors up and says game not available!AHHHHHHHHHHHHHHH
  9. I bought the silver version.Hope it works out ok,Am currently downloading CS: source
  10. I can download the game as many times as i need to correct?Like if I have to reformat?
  11. nvm, i got it
  12. 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
  13. hmm, I'm debating about getting HL2 bronze or just waiting for a hard copy
  14. 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?
  15. So you guys have played the new CS?I'm a little confused... ? ? ?
  16. Cardianls vs Red Sox in world series!Cards sweep 4-0!
  17. So will CS be playable or will it not be ready until HL2 comes out?
  18. #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
  19. 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
  20. What I'm not understanding is how I output for all the numbers between 1 and my input number.
  21. 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;}
  22. 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
  23. Does that mean Kywalker is a Yankees fan?
  24. 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?
  25. YEP Boja probably looks best in pink

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.