Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Penguin

Pages: 1 [2] 3
16
General Discussion / Early christmas surprise
« on: December 20, 2011, 06:36:51 PM »
I had been asking for a new pair of headphones for a while now because honestly my old ones were shit here is what I got.
http://www.thermaltakeusa.com/store/Product.aspx?C=1154&SC=1164&ID=1505

17
Denied Authorizations / UU.OTA.SYNTH-89452's Authorization Application
« on: December 18, 2011, 05:50:59 PM »
Player Section

Steam Name: Capt.TehPenguin
Age: 17
How long have you been Roleplaying? (can be any game): Oh hmm about 3+ years
How long have you been playing Serious GMod RP?: 1+ year

Character Section

Authorization(s):
OTA Synthetic unit, Hunter.

Name: UU.OTA.SYNTH-89452
Age: Uknown
Gender: Male
Affiliation: Overwatch

Write a detailed in-canon back-story how your character obtained these authorizations.
89452 was created before the invasion of earth. The hunter units were manufactured to strike fear and to quickly get to an area of distress or where enemies are. The hunters are very strong and use a very powerful flechette gun which fires rounds that are a timed explosion. Before the invasion hunters were produced, they were designed for clearing rural areas like the outlands. 89452 was deployed to earth after the seven hour war to round up any escapees or people who were not captured. 89452 is equipped with the standard flechette gun, and the basic essentials. 89452 was directed into hunting group 52, 89452 has only been deployed in the outlands but has been trained for close quarters combats for city use. The only procedures of repair done on 89452 is a replacement eye fixture, it got damaged during transport to earth. 89452 Is currently in stasis waiting for further deployment on earth.

What will these authorizations give your character in regards to perks or defects?
Perks
OTA hunter

Defects
No speaking

What do you plan to do with these perks/defects?
Further increase outlands rp and to aid in city if needed.

Will anyone else need these auths? (If so, list OOC and IC name(s))
No.

Which server does this apply for?
Both

Extra Notes (optional):
I had already made one but got told it couldn't be done because the script was being changed. Now to wait two and a half years for ROFL to actually look at these. I would also like this to be helpful in VANGUARD

18
General Discussion / Finally
« on: December 17, 2011, 10:11:51 AM »
I finally got my driver's license today, easiest test I have ever taken. Now just to get a job and all that shit you know.

19
Suggestions / Stop
« on: December 17, 2011, 10:09:07 AM »
Stop messing with people's display names, it is extremely annoying to have to go and change it twice a day, especially when I don't want it changed to ChristmasCapt.Teh Penguin1405. I am just asking that it stop it is kind of abuse of the SQL database, so ya just stop doing it to me in particular.

20
General Discussion / The support yankee thread.
« on: December 07, 2011, 04:25:04 PM »
So yankee got demoted for a petty flaw. I guess posting labels in the nexus lobby = demotion.
So what does slaughtering people with an rpg equal oh yes just a warning. I would like to know why this is so. Yankee is a great admin and deserves his position back, or deal with RTLK the same way if not more severe, the logic of the demotion is extremely flawed, kind of and overreaction if you would ask me. If you would like to support the re-instatement of Yankee post here and add this or your own sig ( i know its shitty took me 15 seconds to make). Support Yankee he is or was a great admin. Also feel free to take the survey provided by JAy here http://www.catalyst-gaming.net/index.php?topic=8766.0

 


21
General Discussion / Catalyst gaming not safe?
« on: November 25, 2011, 06:14:30 PM »

What's up with this?

22
Suggestions / Benefits
« on: November 20, 2011, 10:48:09 AM »
TTT:
Extra credits as a traitor.
Ability to start votekick or voteban for randomly killing without reason.
Ability to votemap.
Higher chance of being detective or traitor.
Scoreboard tags.
More to come, admins before denying any of these please post a reason why you are for or against and do not lock this till it is finished.
If you see something that you want to be added post it here.

23
Suggestions / Ban appeal during forum ban
« on: November 16, 2011, 07:32:14 AM »
Simply in the title the ability to post in ban appeals while you are forum, this way you can post without having to bring it up in the shoutbox and "flaming" about it when you only want the ability to appeal an "unjust" ban. I think this will benefit people a lot, so take the regular player into consideration and give them the option to appeal a forum ban.

24
General Discussion / Harbor Roleplay.
« on: October 22, 2011, 08:39:21 PM »
What will you do when Harbor Roleplay comes back...
I will spend countless hours playing it, I grew tired of harbor Role-play when it was up but now that it isn't up I really want to play it. I would recommend it to anyone who has never play it if you like boats and junk you will enjoy it, but anyway play it for the helicopters.

25
General Discussion / Surgery
« on: October 12, 2011, 04:15:32 PM »
Tomorrow I am having a surgery done to get a tumor removed wish me luck, and hope for a short recovery.

26
Suggestions / Another topic forum
« on: October 05, 2011, 09:14:56 PM »
Basically a topic that has other gaming platforms i.e. Xbox 360 and PS3 forum. I can watch over it if need be.

27
General Discussion / R.I.P. *Spoiler alert*
« on: October 05, 2011, 08:58:41 PM »
Rest in peace dom. If you know what I am talking about its the only thing that can bring a tear to a man's eye to see such a badass go out like that.

28
Support & Help / Anybody have a Horizon Diamond account?
« on: October 03, 2011, 04:12:26 PM »
Ya I dont feel like spending money on buying a Diamond account, but anyways I need it to mod my Gears of war 3 account if you do PM me and we can work something out.

29
General Discussion / You all may have guessed it
« on: October 03, 2011, 04:02:34 PM »
Everybody today is my birthday and I will take my admin status now kthxbai. But anyway feel free to send me a cookie or two.
CAKE

30
Creations / C++ Programs
« on: September 12, 2011, 04:37:37 PM »
I wrote some programs for C++ thought I would post them here so people can use them on whatever they wish.

Kinetic energy calculator, finds the amount of Kinetic energy after the input of speed and mass.

Code: [Select]
// Kinetic energy
#include <iostream.h>
#include <conio.h>
#include <fstream.h>
void main ()
{
double long Mass, Speed, KE  ;
   cout << "What is the mass?\n" ;
   cin >> Mass ;
cout << "What is the speed?\n" ;
   cin >> Speed ;
   KE = Speed * Speed * Mass / 2 ;
   ofstream printObject ;
   printObject .open ("h:\\C++\\KE.txt" , ios::out ) ;
 
 
   cout << "The kinetic energy is..." << KE << endl ;
   printObject << "Speed..." << Speed << endl ;
   printObject << "Mass..." << Mass << endl ;
   printObject << "Total kinetic energy..." << KE << endl  ;
   printObject .close ();
   cout << " Press any key to end run..." ;
   getch () ;
   }


Farenheit to celsius converter:

// CP1, Farenheit to celsius program
#include <conio.h>
#include <iostream.h>
#include <fstream.h>
void main ()
{
double long  C, F ;
   cout << "Please enter fahrenheit temperature. \n" ;
   cin >> F  ;
   C = (F - 32)* 5/9 ;
   ofstream printObject ;
   printObject .open ("h:\\C++\\Farenheitconverter.txt" , ios::out ) ;
 
   cout << "Your degrees in celsius is " << C <<endl  ;
   printObject << "Your degrees in celsius is " << C <<endl  ;
cout << "Press any key to end run..." ;
   getch () ;
   }


Finds your gross pay and net pay after a tax deduction of 20%, also input your number of hours worked and rate of payment.

// Payment
#include <iostream.h>
#include <conio.h>
#include <fstream.h>
void main ()
{
double long Rate, Hours, Gross, Withheld, Netpay  ;
   cout << "Please enter Hours worked.\n" ;
   cin >> Hours ;
   cout << "Please enter Rate of payment.\n" ;
   cin >> Rate ;
   Gross = Rate * Hours ;
   Withheld = Gross * .20 ;
   Netpay = Gross - Withheld ;
   ofstream printObject ;
   printObject .open ("h:\\C++\\Payment.txt" , ios::out ) ;
 
   cout << "You worked...Hours = "<< Hours << endl ;
   cout << "You make ... an hour " << Rate << endl ;
   cout << "Gross pay = " << Gross << endl ;
   cout << "Withheld = " <<Withheld << endl ;
   cout << "Netpay = " << Netpay << endl ;
   printObject << "Gross pay = " << Gross << endl ;
   printObject << "Amount of money taken by taxes = " << Withheld << endl ;
   printObject << "Money made after taxes =  " << Netpay << endl  ;
   printObject .close ();
   cout << " Press any key to end run..." ;
   getch () ;
   }

*Edited by Somone77 - Please use code tags, thanks!

Pages: 1 [2] 3
SimplePortal 2.3.7 © 2008-2024, SimplePortal