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 - SuperFlaminninja³

Pages: [1] 2 3 4 5 6 7
1
Off Topic / Update my PC build.
« on: June 14, 2018, 08:16:23 PM »
So basiclly im high as stuff and dont feel like updating my PC build. If someone would be so kind as to do so. Im gonna buy it. I already have this one built. Just beef it up a little and try to keep the budget of $400

2
Off Topic / I'm stumped (Need help texting a girl)
« on: September 07, 2017, 06:26:32 PM »
So this morning a really fine ass girl (that I've been flirting with for about 2 weeks now) asked me for my number so I could help her with her math, The conversation started out fine and I offered to help her in Computer class also, And she replied "awe thank you. I can... help you in life :) lol" and I just replied "you're welcome. :) lol". I was just gonna text her and ask her if she has a boyfriend and roll with it from there but I wanted to get y'alls opinion on what I should say first (and before you say I'm being presumptuous, I'm a very straight forward person and I don't beat around the bush, every one I know notices this)

3
Off Topic / I got a truck.
« on: June 17, 2017, 01:25:43 AM »
So I turned 16 last august and have been working since October (full time since January) to buy a vehicle, and 2 days ago I actually achieved my goal (I know it took way to long to save for but I was having to buy my own food and pay people gas money for rides to work) and bought me a truck, Its a 1994 GMC Sonoma that I paid $1800 for, It only has 100k miles on it and the engine is in really good condition, I just got new tires on it today.

4
Off Topic / Good 3rd date ideas?
« on: May 06, 2017, 05:04:01 PM »
I cannot think of a place for me and my girlfriend to go on a date, I have literally sat here trying to think of something for 3 days and I still have no ideas, our first date was dinner and then a rodeo that her sister was in, and then our 2nd was the movies, I asked her to go skating but she said its a little childish, and now the only idea I have is to go bowling but I'm probably going to get the same answer as skating, I also asked her where she would want to go and she used her generic response of "Thats up to you",
EDIT: Another small problem is that she has school, and the place where we work has our work hours opposite of eachother (she works on my off days and me on hers)

5
Off Topic / Right ear ringing after shooting shotgun
« on: April 01, 2017, 08:28:36 PM »
I shot my brothers shotgun about 5 days ago without hear protection, And I could barely hear after but now its just sorta quite and a constant ringing in my ear, I dont want to mention it to my mom because she over reacts, Im not really scared about it Im just wondering if it might stop or if anyone has had a similar experience

6
Off Topic / I got a girls phone number (Help)
« on: March 19, 2017, 03:24:45 PM »
So I asked a girl that I work with for her phone number and got it, And she keeps telling me to text her but shes extremely shy and is hard to keep a conversation going with, So I am turning to the International Internet Fourm of Virgins to ask for ideas for texting her, I have already tried telling her good morning, asking her how her day is going and casual talk like that, I think she just needs to get to know me in person before she starts seriously talking over text.

7
Off Topic / First PC build suggestions?
« on: February 22, 2017, 03:19:16 PM »
So I Just finished buying the parts for my pc, and will assemble them saturday when they arrive, However I was wondering if I should be woried about CPU and GPU heat, and if so how should I check the temps? how long should I leave it running before I stop checking? And finally what should the temp be for both the CPU and GPU?

I already have a Windows 8 key, and im going to buy a windows 10 key next week when I get paid

My Specs:
CPU:Intel i5-6500 3.2ghz
GPU:GeForce GTX 1050 Ti
Motherboard:MSI B150
Ram:8gb Kingston HyperX Fury
Storage: Seagate 1tb HDD, Samsung 500gb SSD=1.5TB
PSU:EVGA SuperNOVA NEX

8
Modification Help / Bot type mask isnt working
« on: February 04, 2017, 12:44:47 PM »
Im trying to make a system where the light key is used to activate things (Pick up items, Interact)
and it worked fine until I add in the type mask for bots, thats when it stops working
Code: [Select]
function serverCmdLight(%client, %brick)
{
%player = %client.player;

    if(!isObject(%object = getWord(containerRaycast(%player.getEyePoint(), vectorAdd(%player.getEyePoint(), vectorScale(%player.getEyeVector(), 7)), $TypeMasks::FxBrickObjectType | $TypeMasks::PlayerObjectType),0)))
        return;
    %brick = %object;

    if(%object.getDatablock() == brickSingleBottleCapData.getID())
{
%client.backPack["Caps"]++;
%client.backPack["Stim"]++;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[(1) Bottle Cap Added]");
%brick.disappear(32);
}
if(%object.getDatablock() == brickStackBottleCapData.getID())
{
%Amount = (getRandom(10,20));
%client.backPack["Caps"] += %Amount;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[ (" @ %Amount SPC ") Bottle Cap Added]");
%brick.disappear(32);
serverPlay3D(CapPickupSound, %client.player.getPosition());
}

if(%object.getDatablock() == brickTireData.getID())
{
%client.backPack["Rubber"] += 5;
%client.backPack["ScrapMetal"] += 2;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[Rubber Added]");
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[Scrap Metal Added]");
%brick.disappear(32);
}

if(%object.getDatablock() == brickNukaBottleData.getID())
{
%client.backPack["Glass"]++;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[Glass Added]");
%brick.disappear(32);
serverPlay3D(CapPickupSound, %client.player.getPosition());

}

if(%object.getDatablock() == brickScrapMetalTeapotData.getID())
{
%client.backPack["ScrapMetal"] += 5;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[(5) Scrap Metal Added]");
%brick.disappear(32);
}

if(%object.getDatablock() == brickBentTincanData.getID())
{
%client.backPack["ScrapMetal"]++;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[Scrap Metal Added]");
%brick.disappear(32);
}

if(%object.getDatablock() == brickTincanData.getID())
{
%client.backPack["ScrapMetal"]++;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[Scrap Metal Added]");
%brick.disappear(32);
}

if(%object.getDatablock() == brickHamRadioData.getID())
{
%client.backPack["ScrapElectronics"]++;
%client.backPack["LightBulb"]++;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[ScrapElectronics Added]");
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[Light Bulb Added]");
%brick.disappear(32);
}
if(%object.getDatablock() == brickTV1Data.getID())
{
%client.backPack["Glass"] += 3;
%client.backPack["ScrapElectronics"] += 2;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[(3) Glass Added]");
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[(2) Scrap Electronics Added]");
%brick.disappear(32);
}
if(%object.getDatablock() == brickTV1Data.getID())
{
%client.backPack["Wood"] += 5;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[(5) Wood Added]");
%brick.disappear(32);
}

if(%object.getDatablock() == brickXO1HeadData.getID())
{
%client.X01Head += 1;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[X-01 PowerArmor Head Added]");
%brick.disappear(32);
}

if(%object.getDatablock() == brickXO1BodyData.getID())
{
%client.X01Body += 1;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[X-01 PowerArmor Body Added]");
%brick.disappear(32);
}

if(%object.getDatablock() == brickXO1LegsData.getID())
{
%client.X01Legs += 1;
messageClient(%client, '',"<font:Arial Bold:25><color:5bb611>[X-01 PowerArmor Legs Added]");
%brick.disappear(32);
}
}

9
Off Topic / Opinion on the gaming rig I'm Going to build?
« on: November 05, 2016, 10:09:13 PM »
So I'm sorta new to building pc's and I wanted to get every ones opinion on this build before I buy it, And any improvements I could make while keeping it around the same price. Thanks
http://pcpartpicker.com/list/gWKpKZ
EDIT: I already have a case hard drive and OS

10
Off Topic / Work Megathread
« on: November 03, 2016, 10:33:45 PM »
SO I mostly wanted to know where other forumers work since I just got off and it got me to thinking about it
FYI: I work at a fast food restaurant based in Alabama but with a few locations in other states named Jack's.

11
Off Topic / I take my GED math test next Wednesday
« on: November 02, 2016, 08:50:01 PM »
So before anyone trys to tell me that a GED is a bad thing, I was home schooled, And a home schoolers GED is equal to a High School diploma since most home schools don't offer a actual accredited diploma it is the equal in the workforce as a High School diploma (For home schoolers only)
So now that that is out of the way I am taking my GED math test Wednesday and then I will start study for the rest of the test, Which will not take very long, (Science(Which I have always been amazing at), English, Social Studies) I will probably be done by the end of the year and start enrolling in Collage, I made a 193/200 on my GED Match Practice test. I plan to go to collage for Computer Science.

12
Off Topic / I got a Job!
« on: October 25, 2016, 04:28:15 PM »
So I just got a job at a fastfood chain, That's literally all I know is that I'm Hired,
/discuss

13
Off Topic / Cringy posts from when you first joined?
« on: August 28, 2016, 08:50:37 PM »
So post Cringworthy posts from when you were but a ignorant little tot.
Quote
how do you make add-ons?

14
Off Topic / 999th post on this account!
« on: August 28, 2016, 08:38:41 PM »
So in one more post I will be at 1000! /discuss

15
Off Topic / Should I buy an Alt?
« on: August 28, 2016, 08:00:17 PM »
I don't Know why but I feel like buying an alt all of the sudden. Should I or should I just wait?

Pages: [1] 2 3 4 5 6 7