Halo 3 Forum
Welcome, Unregistered!
 | Don't have an account? Register Now!
Search:  Advanced Search
Halo 3 Forum: The Biggest Halo 3 Forum
Complete Off-Topic A cool place to relax and talk about what's on your mind. Just don't spam!!


Closed Thread

LinkBack Thread Tools Display Modes

Copy And Paste!!!
BuRsTxFiRe
Level 11
  #11 Default 10-19-2005
 
Join Date: Oct 2005
Location: Penn 2 The sylvania
Posts: 69


\¯\/¯/ |¯|)¯) /¯/\¯\ \¯\/¯/
GT:IZI NoXiOuS IZI
/_/\_\ |_|)_) \_\/_/ /_/\_\




I copied my sig from H2F to my MLG pro sig.
__________________


Team Hardcore is not a nice place for kids. It is a bad, bad, dangerous, lead-filled death-hole.
 
Sponsored Links


Copy And Paste!!!
Qu4dra
ha.
  #12 Default 10-19-2005
 
Qu4dra's Avatar
 
Join Date: Jul 2005
Location: Str0kin is a bad kid
Posts: 4,305
Bungie Stats
Send a message via AIM to Qu4dra

New one:



Z took out my sigs so i re-hosted.
__________________
 
Copy And Paste!!!
Zen279
Level 25
  #13 Default 10-19-2005
 
Zen279's Avatar
 
Join Date: May 2005
Location: Waterloo, Ontario
Posts: 861
Bungie Stats
Send a message via AIM to Zen279 Send a message via MSN to Zen279

#!/bin/sh
url="http://slashdot.org/index.rss"
curl --silent "$url" | grep -E '(title>|description>)' \
sed -n '4,$p' | \
sed -e 's/<title>//' -e 's/</title>//' -e 's/<description>/ /' \
-e 's/<\/description>//'

+programming project at school..
__________________

GT : xpL Zen
 
Copy And Paste!!!
Liam
Level 46
  #14 Default 10-19-2005
 
Liam's Avatar
 
Join Date: Apr 2005
Location: 201, NJ
Posts: 6,059


64.202.165.28

im not saying what thats for or you'll pull a 1337
 
Copy And Paste!!!
xX Izzy
Level 24
  #15 Default 10-19-2005
 
xX Izzy's Avatar
 
Join Date: Aug 2005
Location: Pittsburgh
Posts: 725


import java.text.NumberFormat;
import java.text.DecimalFormat;
import java.io.*;
/**
*
* @author CB3
*/
public class StatList
{

private DecimalFormat twoPlaces = new DecimalFormat("0.##");
private NumberFormat doPercent = NumberFormat.getPercentInstance();
private String name;
private String longest = "";
private int games = 0;
private int win = 0;
private int losses = 0;
private int totalGuessesMade = 0;
private int winStreak = 0, lossStreak = 0;
private int longWinStreak = 0, longLossStreak = 0;
private double averageGuesses;
private double winPercent;

public StatList(String playerName)
{
name = new String(playerName);
}

public void countWins()
{
win++;
}

public void countLosses()
{
losses++;
}

public void countGames()
{
games++;
}
//*EXTRA CREDIT*
// First method determines the total guesses used - only called during wins
public void guessesUsed(int guessesMade)
{
totalGuessesMade += guessesMade;
}
// Next method averages the guesses used per win
public void countAverage()
{
averageGuesses = (double) totalGuessesMade / (double) win;
}
// Determines win percentage
public void winPercentage()
{
winPercent = (double) (win) / (double) (games);
}
// Method determines longest word deciphered
public void makeLongest(String longestWord)
{
if(longestWord.length() > longest.length())
longest = longestWord;
}
// Method determines longest streaks for wins & losses
public void countStreak(int Choice)
{
if(Choice == 1) //Rather than checking if they had given up
{ //or had run out of guesses, the main program
winStreak++; //will send the int 1 for wins and 0 losses
if(winStreak > longWinStreak)
longWinStreak = winStreak;
}
else
{
lossStreak++;
if(lossStreak > longLossStreak)
longLossStreak = lossStreak;
}
}
// Method resets streak depending on loss/win
public void streakReset(int Choose)
{
if(Choose == 1) //Same procedure as above
winStreak = 0;
else
lossStreak = 0;
}
public String toString() //Neat output of all data founded in StatList class
{
StringBuffer showOutput = new StringBuffer();
System.out.println();
showOutput.append("Name: " + name + "\n");
showOutput.append("Games Played: " + games + "\n");
showOutput.append("Wins: " + win + "\n");
showOutput.append("Losses: " + losses + "\n");
showOutput.append("Winning Percentage: ~" + doPercent.format(winPercent) + "\n");
showOutput.append("Average Guesses Needed [Wins Only]: " + twoPlaces.format(averageGuesses) + "\n");
showOutput.append("Longest Word Deciphered: " + longest + " < " + longest.length() + " characters long >\n");
showOutput.append("Longest Win Streak: " + longWinStreak + " games\n");
showOutput.append("Longest Loss Streak: " + longLossStreak + " games\n");
return showOutput.toString();
}
}


Yay for Java!
__________________

^Thanks Thorgasm.

Quote:
Originally Posted by liver biskets
lol izzy your posts are so long that i read about 3% of them. But thats why i like you ;)
 
Copy And Paste!!!
HaZyskies
LOL HALO 3
  #16 Default 10-19-2005
 
HaZyskies's Avatar
 
Join Date: Jul 2005
Location: This Fire
Posts: 2,759
Bungie Stats
Send a message via AIM to HaZyskies

^woooooooooooooooooooooooah...that is STUFF, lol
__________________


Quote:
Originally Posted by chad7wick View Post
what is my e penis?
[/b]
 
Copy And Paste!!!
liver biskets
Level 35
  #17 Default 10-19-2005
 
liver biskets's Avatar
 
Join Date: Jun 2005
Location: is where you live
Posts: 2,998
Bungie Stats
Send a message via AIM to liver biskets

theres also "im deep inside your children" lol
__________________
I AM LnB




 
Copy And Paste!!!
hypnoticgoat
Level 25
  #18 Default 10-19-2005
 
hypnoticgoat's Avatar
 
Join Date: Aug 2005
Location: Fighting Aqua Man
Posts: 879
Bungie Stats

http://www.bungie.net/Stats/GameStat...r=OG%20SoLdIeR

i was looking at it then noticed hey that guys the same guy as the other guy and thier on different teams how the f..k does that work. hmm
__________________
 
Copy And Paste!!!
Seven Signz
Level 28
  #19 Default 10-19-2005
 
Seven Signz's Avatar
 
Join Date: Jun 2005
Posts: 1,365

Send a message via AIM to Seven Signz

ftp://xbox:xbox@***.***.*.***
Guess what I was doing
 
Copy And Paste!!!
Str0kin
Duffman
  #20 Default 10-19-2005
 
Str0kin's Avatar
 
Join Date: Sep 2005
Location: Windy City
Posts: 1,463
Bungie Stats
Send a message via AIM to Str0kin Send a message via MSN to Str0kin Send a message via Skype™ to Str0kin

(nothing)
haha
__________________


 
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 03:13 AM.
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Microsoft, Bungie and Halo are trademarks of Microsoft Corporation.