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.

Miyamoto Musashi

Armory Member
  • Joined

  • Last visited

Everything posted by Miyamoto Musashi

  1. Downloading music doesn't hurt the record industry. Here in Poland we have a place, when you can just wander in, buy pirate CDs 5 times cheaper than in the shops and police is doing nothing about it. And CDs in Poland are VERY expensive. I compared the prices. Buying the CDs from GB/USA is, with posting and package, much cheaper than buying one in Poland. Not to mention that Polish Post Office workers open the incoming packages and if they like something they take it and nobody cares about it. So either we get robbed, or...... we get robbed. As for the record industry, we dont give a <<CENSORED>>. Nobody cares here about anybodys rights to own anything. Whether is it music or a car. If somebody likes it, he takes it. Chances are good he will live his life out unhurt. Collective, one of the primary rules of Communizm, works better under free market of Capitalizm.
  2. Aaaah, martyrology. One of the things i find most amusng in all the civilizations. Its the art of giving stupid examples of how one should die to be remembered.Of course there are some countries that just love to remind the whole world those who died one way or another. I cant say that i dont know why. I know, oh i know. But saying why will turn this thread into another heated political debate (which is the thing im trying to get started here). Also poles are very proud of their martyrs. But i can blame that on their stupidity more than anything else.So my point is to leave the dead, DEAD. Re-remeberance, besides being distasteful, is also pointless. Oh yes, and boring too. Leave that to the history books. The truthful ones of course. Ones which only give facts. Everything esle is trash.
  3. Say again :?: :!: :roll:
  4. You said it...
  5. Not only that, if you downloadded the mappacks from TA website, just under the Download button you can find this: "You will need also to download push.wad"
  6. Maybe it just doesnt like You...
  7. I have my both legs solid on the ground, thank you. I have seen pictures and aerial shots of West Point. Tell me more about insides, for it is very interesting (outside 18th century fortress, inside gothic, very interesting). You should really go to Europe sometime.
  8. I dont have anything against plane red (CCCP flag???). This flag reminds me of Imperial Japanese flag. Thats improvement though compared to R/W/B.
  9. Half-Life/FireArms/sound/misc/trumpet1.wavThis is the WAV file for capping a point. Dont want it ? Overwrite it.
  10. Then how about you keep you "for the US" for yourself and not brag about it all the way, eh? Why should I be quiet? PS Klif, i agree.
  11. I hate to dissapoint you, but i sincerely doubt it. Go check in encyclopedia the very defintion of gothic architecture and you will know, you are quite wrong.
  12. Yes, i do. Wanna fight me again ?
  13. I dont remember anyone mentioning clan colors were RedWhiteBlue. So i think you have strange corelations to the flag we all know.
  14. 260F = 176.4 C = 449.7 KSensor 3 == what exactly ??
  15. It does count. If you are #1 Healer you get additional 25 skill points.
  16. Everything is 90% crap. Except crap. Crap is 100% crap.
  17. I would call it something that we were learning all last semester on ElectroDynamics.
  18. Here, try my first program in Java:import java.awt.*;import java.awt.event.*;import java.util.Random;class kolo extends Panel{private int x,y,r; kolo(int xx, int yy, int rr) { x=xx; y=yy; r=rr; } public void paint(Graphics g) { Random rand=new Random(); Color kolor = new Color(rand.nextInt(),true); g.setColor(kolor); g.fillOval(x,y,r,r); }}public class drawoval extends Frame implements Runnable, ActionListener{ int xx, yy, rr; Thread thread=null; kolo kolko; Button Start, Stop, Exit, Clear, Menu, r1, r2, r3; boolean visible=true; public static void main(String[] args) { new drawoval(); } drawoval() { super.setSize(640,480); super.setTitle("Rysowanie kółek plus jakieś tam bajery"); super.setResizable(true); super.setLayout(null); super.setVisible(true); Menu = new Button("Menu"); Menu.setBounds(10, 30, 80, 20); Menu.addActionListener(this); add(Menu); Start = new Button("Start"); Start.setBounds(10, 60, 80, 20); Start.addActionListener(this); add(Start); Stop = new Button("Stop"); Stop.setBounds(10, 90, 80, 20); Stop.addActionListener(this); Clear = new Button("Clear"); Clear.setBounds(10, 120, 80, 20); Clear.addActionListener(this); add(Clear); Exit = new Button("Exit"); Exit.setBounds(10, 240, 80, 20); Exit.addActionListener(this); add(Exit); r1 = new Button("400/300"); r1.setBounds(10, 150, 80, 20); r1.addActionListener(this); add(r1); r2 = new Button("640/480"); r2.setBounds(10, 180, 80, 20); r2.addActionListener(this); add(r2); r3 = new Button("800/600"); r3.setBounds(10, 210, 80, 20); r3.addActionListener(this); add(r3); thread=new Thread(this); } public void run() { while (thread!=null) { Graphics o; o=super.getGraphics(); rr = (int) Math.rint(Math.random() * 30); xx = (int) Math.rint(Math.random() * super.getWidth()); yy = (int) Math.rint(Math.random() * super.getHeight()); kolko=new kolo(xx, yy, rr); kolko.paint(o); try { Thread.sleep(10); }catch(InterruptedException e) {} } thread=null; } public void stop() { thread=null; thread.interrupt(); } public void actionPerformed(ActionEvent e) { Object obj=e.getSource(); if (obj==Menu) { if(visible==true) { remove(Start); remove(Stop); remove(Clear); remove(Exit); remove(r1); remove(r2); remove(r3); visible=false; } else if(visible==false) { if(thread==null) {add(Start);} else add(Stop); add(Clear); add(Exit); add(r1); add(r2); add(r3); visible=true; } } if (obj==Exit) { thread.stop(); dispose(); System.exit(0); } if(obj==Clear) { Graphics p; p=super.getGraphics(); Random rand=new Random(); Color kolor = new Color(rand.nextInt(),true); p.setColor(kolor); p.fillRect(0, 0, super.getWidth(), super.getHeight()); } if(obj==Start) { remove(Start); add(Stop); if(thread!=null) thread.start(); } if(obj==Stop) { remove(Stop); add(Start); thread.stop(); thread = new Thread(drawoval.this); } if(obj==r1) super.setSize(400,300); if(obj==r2) super.setSize(640,480); if(obj==r3) super.setSize(800,600); }}PS You should try the Linux compiler. Works all the time and you dont need the editor. And its free.
  19. God does not play dice - A. Einstein.Counter quote: Enstein would roll over in his grave. Not only does God play dice, the dice are loaded.PS Sharpshooter, i didnt understand that USMilitary crap, not on eword. Especially becouse of the abreviations. Was that funny? For i dont know whether should i laugh and not remain behind...
  20. I am getting an average of 350 ms on the regular server and in the best times it went down to 100, so i think that right now its just poland having problems (all TK421 have high ping recently). Si i can expect the ping on Test Server drop to 150s.
  21. I suggest then Gator, you re-read my post.

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.