Jump to content

LightFire53

Retired Admins
  • Posts

    1,251
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by LightFire53

  1.  

    So.... I am starting to recolour things...

     

    Fluff Plasmaman Suit:

    70742f0cca.png

     

    And the corresponding helm:

    51e35c2bf2.png

     

    I am spriting my chameleon plasmaman suit for Ikelos, and I am thinking this should be the base model, with minor colour changes for different departments as the chameleon portion. Help in doing so would be awesome.

     

  2.  

    In Canada, laws/bills go through parliament, get revised, etc... theno go to the Senate for the exact same thing, then the governor general, the Queens representative in Canada with no real power except honourary power approves it into law.

     

    o-JUSTIN-TRUDEAU-facebook.jpg

     

    Oh, and the prime minister is hot.

     

  3.  

    Update, now with colours!

     

     

    if($job == "Captain" || $job == "Acting Captain")

    {

    $source = "Captain " + $source;

    }

     

    if($job == "Personal AI")

    {

    $source = "Personal Artificial Intelligence " + $source;

    }

     

    if($job == "AI")

    {

    $source = "Artificial Intelligence " + $source;

    }

     

    if($job == "Cyborg" || $job == "Android" || $job == "Robot")

    {

    $source = "Cybernetic Unit " + $source;

    }

     

    if($job == "Head of Security")

    {

    $source = "Commander " + $source;

    }

     

    if($job == "Head of Personnel")

    {

    $source = "Lieutenant " + $source;

    }

     

    if($job == "Research Director")

    {

    $source = "Professor " + $source;

    }

     

    if($job == "Chief Medical Officer")

    {

    $source = "Surgeon General " + $source;

    }

     

    if($job == "Botanist" || $job == "Hydroponicist" || $job == "Botanical Researcher")

    {

    $source = "Herbologist " + $source;

    }

     

    if($job == "Life Support Specialist" || $job == "Atmospheric Technician")

    {

    $source = "Atmospheric Specialist " + $source;

    }

     

    if($job == "Chief Engineer")

    {

    $source = "Engineering Chief " + $source;

    }

     

    if($job == "Warden")

    {

    $source = "Warden " + $source;

    }

     

     

    if($job == "Detective" || $job == "Forensic Investigator")

    {

    $source = "Detective " + $source;

    }

     

    if($job == "Security Officer" || $job == "Security Pod Pilot")

    {

    $source = "Officer " + $source;

    }

     

    if($job == "Chef" || $job == "Cook" || $job == "Butcher")

    {

    $source = "Chef " + $source;

    }

     

    if($job == "Nanotrasen Representative")

    {

    $source = "Representative " + $source;

    }

     

    if($job == "Internal Affairs Agent" || $job == "Lawyer" || $job == "Public Defender" || $job == "Blueshield")

    {

    $source = "Agent " + $source;

    }

     

    if($job == "Nurse")

    {

    $source = "Nurse " + $source;

    }

     

    if($job == "Magistrate")

    {

    $source = "Magistrate " + $source;

    }

     

    if($job == "Paramedic")

    {

    $source = "EMT " + $source;

    }

     

    if($job == "Clown")

    {

    $source = $source +" The Clown";

    }

     

    if($job == "Mime")

    {

    $source = $source + " The Mime";

    }

     

    if($job == "Chaplain")

    {

    $source = "Clergyman " + $source;

    }

     

    if($job == "Cargo Technician")

    {

    $source = "Shipping Specialist " + $source;

    }

     

    if($job == "Spelunker" || $job == "Shaft Miner")

    {

    $source = "Mineral Extractor " + $source;

    }

     

    if($job == "Quartermaster")

    {

    $source = "Quartermaster " + $source;

    }

     

    if($job == "Emergency Response Team Member")

    {

    $source = "Emergency Responder " + $source;

    }

     

    if($job == "Emergency Response Team Leader")

    {

    $source = "Emergency Response Leader " + $source;

    }

     

    if($job == "Scientist" || $job == "Psychologist" || $job == "Xenoarcheologist" || $job == "Medical Doctor" || $job == "Psychiatrist" || $job == "Pathologist" || $job == "Pharmacist" || $job == "Surgeon" ||$job == "Xenobiologist" || $job == "Chemical Researcher" || $job == "Anomalist" || $job == "Coroner" || $job == "Brig Physician" || $job == "Virologist" || $job == "Geneticist" || $job == "Chemist" || $job == "Microbiologist"|| $job == "Plasma Researcher"|| $job == "Chemical Researcher")

    {

    $source = "Doctor " + $source;

    }

     

    $foo = "";

    $joblow = lower($job);

     

    if(mem($joblow)) { $foo = mem($joblow); }

    else { $foo = substr($job, 1, 6); }

     

     

    underline = 0;

    if(find("Captain Chief Engineer Head of Security Chief Medical Officer Research Director Head of Personnel Quartermaster",$job))

    {

    underline = 1; // heads

    }

    color = 0;

    if(find("Captain Head of Personnel NanoTrasen Representative Magistrate Blueshield Officer",$job))

    {

    color = "193a7a"; // .comradio

    }

    if(find("NanoTrasen Representative Magistrate Blueshield Officer",$job))

    {

    color = "5C5C8A"; // .centradio

    }

    if(find("Quartermaster Cargo Technician Shaft Miner Spelunker",$job))

    {

    color = "5f4519"; // .supradio

    }

    if(find("Chief Engineer Maintenance Technician Engine Technician Electrician Life Support Specialist Atmospheric Technician Mechanic Station Engineer",$job))

    {

    color = "a66300"; // .engradio

    }

    if(find("Chief Medical Officer Medical Doctor Surgeon Nurse Coroner Chemist Pharmacologist Pharmacist Geneticist Virologist Pathologist Psychiatrist Therapist Psychologist Paramedic",$job))

    {

    color = "008160"; // .medradio

    }

    if(find("Head of Security Warden Forensic Technician Detective Security Officer Brig Physician Security Pod Pilot",$job))

    {

    color = "a30000"; // .secradio

    }

    if(find("Research Director Scientist Xenoarcheologist Anomalist Plasma Researcher Xenobiologist Chemical Researcher Roboticist Mechatronic Engineer Biomechanical Engineer",$job))

    {

    color = "993399"; // .sciradio

    }

    if ($job == "AI")

    {

    underline = 1;

    color = "193a7a"; // command

    color = "193a7a"; // pink

    }

     

    if ($source == "Traitor McTraitorton")

    {

    color = "6D3F40";

    $job = "Traitor";

    }

     

    $source = $source + " (";

    if (underline)

    {

    $source = $source + "";

    }

    if (color)

    {

    $source = $source + "";

    }

    $source = $source + $job;

    if (color)

    {

    $source = $source + "";

    }

    if (underline)

    {

    $source = $source + "";

    }

    $source = $source + ")";

     

     

  4.  

    No. Not as they are now. Not until all of the species have reached an equilibrium of balance and deserved attention given to them (Plasmamen)

    lower the price then mothafucka

    it's like 100 karma

     

    Plasmamen are the shiny "wow, the server really likes you!" race. However, they are essentially vox that are flammable. It would be nice to see a couple more features added to them.

     

  5.  

    Hyperion is just a more blunt version of me. Tekzuk Einfar is a classier version, more polite. Araris Valerian is a ??? and Ikelos is Hyperion put to plasma.

     

    Head of Command shares similar traits to Hyperion, while W.I.Z.A.R.D. is more of a computerized, standardized form of Hyperion.

     

  6.  

     

    if($job == "Captain" || $job == "Acting Captain")

    {

    $source = "Captain " + $source;

    }

     

    if($job == "Personal AI")

    {

    $source = "Personal Artificial Intelligence " + $source;

    }

     

    if($job == "AI")

    {

    $source = "Artificial Intelligence " + $source;

    }

     

    if($job == "Cyborg" || $job == "Android" || $job == "Robot")

    {

    $source = "Cybernetic Unit " + $source;

    }

     

    if($job == "Head of Security")

    {

    $source = "Commander " + $source;

    }

     

    if($job == "Head of Personnel")

    {

    $source = "Lieutenant " + $source;

    }

     

    if($job == "Research Director")

    {

    $source = "Professor " + $source;

    }

     

    if($job == "Chief Medical Officer")

    {

    $source = "Surgeon General " + $source;

    }

     

    if($job == "Chief Engineer")

    {

    $source = "Engineering Chief " + $source;

    }

     

    if($job == "Warden")

    {

    $source = "Warden " + $source;

    }

     

    if($job == "Detective" || $job == "Forensic Investigator")

    {

    $source = "Detective " + $source;

    }

     

    if($job == "Security Officer" || $job == "Security Pod Pilot")

    {

    $source = "Officer " + $source;

    }

     

    if($job == "Chef" || $job == "Cook" || $job == "Butcher")

    {

    $source = "Chef " + $source;

    }

     

    if($job == "Nanotrasen Representative")

    {

    $source = "Representative " + $source;

    }

     

    if($job == "Internal Affairs Agent" || $job == "Lawyer" || $job == "Public Defender" || $job == "Blueshield")

    {

    $source = "Agent " + $source;

    }

     

    if($job == "Nurse")

    {

    $source = "Nurse " + $source;

    }

     

    if($job == "Magistrate")

    {

    $source = "Magistrate " + $source;

    }

     

    if($job == "Quartermaster")

    {

    $source = "Quartermaster " + $source;

    }

     

    if($job == "Scientist" || $job == "Psychologist" || $job == "Xenoarcheologist" || $job == "Medical Doctor" || $job == "Psychiatrist" || $job == "Pathologist" || $job == "Pharmacist" || $job == "Surgeon" ||$job == "Xenobiologist" || $job == "Chemical Researcher" || $job == "Anomalist" || $job == "Coroner" || $job == "Brig Physician" || $job == "Virologist" || $job == "Geneticist" || $job == "Chemist" || $job == "Microbiologist"|| $job == "Plasma Researcher"|| $job == "Chemical Researcher")

    {

    $source = "Doctor " + $source;

    }

     

    $foo = "";

    $joblow = lower($job);

     

    if(mem($joblow)) { $foo = mem($joblow); }

    else { $foo = substr($job, 1, 6); }

     

    if (!find($source, "Unknown") && $job != "No id" && !find($source, " (as ")) {

    $source = $source + " (" + $job + ")"; } // Add job next to people's names.

     

     

    This is the basic script I use as AI. To change title, all you have to do is select the desired title, and edit it. For example,

     

     

    if($job == "Captain" || $job == "Acting Captain")

    {

    $source = "Captain " + $source;

    }

     

     

    Can be modified into

     

     

    if($job == "Captain" || $job == "Acting Captain")

    {

    $source = "Comdom " + $source;

    }

     

     

    I will try to keep this updated as I make more titles. Currently, I lack anything for Cargo Techs, Shaft Miners, ERT, Paramedic, Engineers, Atmos Techs, Bartender, Chaplain, Botanist, Clown, and Mime. I am looking for official sounding titles (Notice how everyone in Medbay and Science are doctors due to their doctorates).

     

  7.  

    What I have learned by reading this is that Hyperion is, while memorably, apparently unrobust at anything but the law. And heartbreakingly, Head of Command loses to GRANDMA. Damn those cookies. Bribery.

     

    Oh well.

     

    Colin Black as Captain

    Jay Wingler as Shaft Miner

    Halogen for Coroner (HALP! BEING ABSORBED)

    Elliot Campbell for greytide

    Gloria Leos for Botany

    S.A.M. for engineer

     

  8.  

    Sergey K. for Security officer.

    SHIP for Security officer.

    Damon Bones for Magistrate.

    Cecilia Fletching for HoS.

    Jonah Bright for Detective.

     

    Luigi Belducci for Bestshield.

    Cy Roberts for NT Rep.

    Spark 5.5 for AI. End of the line.

    KITSA for Engineering Cyborg.

    CPUCAKE for general cyborg.

     

    Angelina Logue for RD.

    Jack Price for Scientist.

    Jacob Ryals for Geneticist.

     

    Praxis Chailer for Chemist

    Cid Squishings for CMO

     

    "Head of Command for AI - HoC is a bit faster on the uptick than GRANDMA."

     

     

    Yay. Someone remembers HoC

     

    Honkerbelle for clown. (Edit)

     

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Terms of Use