Jump to content

? servers

? players online

Harry

Regular
  • Posts

    2085
  • Joined

Everything posted by Harry

  1. Hot, any pix?
  2. Black Ops 360

    It's designed for quick heart-racing fighting and dodging. Not realistic, but really fun. Some people prefer slower FPSes, nothing wrong with that ^_^
  3. Sush, I like FUD.
  4. There is no such thing as "temporary brain damage" - brain cells do not regenerate. So hold your breath and lose some!
  5. Nice bump eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee 3/4 repeat rate.
  6. Only 117 posts to get #1, GOGOGOGO

  7. i kno thats what the gurls always tell me

  8. why is bobkak sharing 4-bobkak-only pix w/ you :(

     

    i thought what we had was special!!!

  9. If you didn't know yet: http://mumble.sourceforge.net/Ice - the plugin could be made in just PHP, or in tons of other languages ICE supports; looks very flexible. I'll try to look into it more, but I am horrible at managing databases, so I don't think I could do much without learning a ton...

     

    ICE should be able to handle most Mumble plugins. Though if you need more, there is http://mumble.sourceforge.net/slice/ ... but ICE should be able to handle most stuff.

     

    Good luck if you ever decide to look into it more, and thanks~.

     

    Edit: this should be a huge help if you look into it more: http://gitorious.org/mumble-scripts/mumble-scripts/trees/master/Authenticators - I don't think it would be too hard to convert to VBulletin-supporting, but I am not sure as I do not own a copy of VBulletin. Though I think you already know this :)

  10. Personally I dropped PB because of TTT. TTT can get lame when people RDM, but it's not as lame as freekilling. There is also a lot more solid proof when someone RDMs. TTT is also is a lot nicer to play, and more friendly than PB (you don't get ordered to do shit all the time, and the game doesn't die when a lot of your teammates die). TTT is just a lot more fun I think.
  11. Community update

    Can we still use SG.Sup in our names, or are we being asked to remove it? Really cool work Also, sorta offtopic, and I don't know if it's intentional or not... but Admin+ peoples names make their other info all bold (example) - I am OCD so it is a bit weird looking. It also makes the visitor messages get "weird" (example). Thanks.
  12. OBVIOUSLY ANGREY YOU DONT HAVE A TAIL, FRIEND!11!!1

  13. derep furriez

     

    u just hatin cuz u dont have a tail

  14. WHY WOULD YOU DO THAT

  15. Drama?

    DON'T JUST STAND THERE, IT WILL TEAR YOU APART!
  16. First you'd probably want to get the basic dynamic image creation done. Simple steps first. Here is an example of a random-quotes script (left a ton of comments in, hopefully they will help): // Path to our font file $font = '/path/to/fonts/arial.ttf'; $fontsize = 12; // array of random quotes $quotes = array( "hurr", "durr", "gurr"); // generate a random number with range of # of array elements $pos = rand(0,count($quotes)-1); // get the quote and word wrap it $quote = wordwrap($quotes[$pos],50); header("Content-type: image/png"); //Picture Format header("Expires: Mon, 01 Jul 2003 00:00:00 GMT"); // Past date header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // Consitnuously modified header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Pragma: no-cache"); // NO CACHE /*image generation code*/ //create Image of size 350px x 75px $dims = imagettfbbox($fontsize, 0, $font, $quote); $width = $dims[4] - $dims[6]; // upper-right x minus upper-left x $height = $dims[3] - $dims[5]; // lower-right y minus upper-right y $bg = imagecreatetruecolor($width, $height); //This will make it transparent imagesavealpha($bg, true); $trans_colour = imagecolorallocatealpha($bg, 0, 0, 0, 127); imagefill($bg, 0, 0, $trans_colour); //Text to be written // White text $white = imagecolorallocate($bg, 255, 255, 255); // Grey Text $grey = imagecolorallocate($bg, 128, 128, 128); // Black Text $black = imagecolorallocate($bg, 0,0,0); //Writes text to the image using fonts using FreeType 2 imagettftext($bg, $fontsize, 0, 0, 12, $grey, $font, $quote); //Create image imagepng($bg); //destroy image ImageDestroy($bg); ?> Preview (using different stupid quotes). That should help a lot. You now just need to find a simple method of parsing the XML data. Most of the major work (image creation) is pretty much exampled above. Good luck, hope I helped a bit.
  17. Verify game cache, fixes 99% of problems.
  18. You're wrong in some ways. I enjoy trolling and it's all fun and games... until people get banned over it. There's a difference between being a troll for fun, and a troll to cause grief for people. Fun trolls should be warned instead of banned over stuff... I don't know what happened at the time, but (USUALLY) my trolls with higher-ups in-game are always fun, and everyone has a good laugh.
  19. Thanks for inviting us to become good members of your community. We love guns and being good friends. Take care, and see ya on the servers!
  20. jen hast recht. sry bro.
  21. ik ben een nieuflikker en niemand kan me stoppen

×
×
  • Create New...