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.


Messages - Cheat

Pages: 1 ... 828384 8586 ... 212
2491
The Flood / Re: Hey!
« on: April 05, 2015, 11:35:52 PM »
Just saw Furious 7 with Blazed Iron. It was kind of a let down and much too long.

2492
The Flood / Re: Best Forum Moment?
« on: April 05, 2015, 04:10:29 PM »
When Cheat actually picked me up to help develop Sep7agon. I thought that my ideas would be discarded, like it happens all the time. Somehow, people don't trust you when you offer to help them.

Kinda like how I tried to bring the supporter nameplate to light only to just backfire entirely?
No.

2493
The Flood / Re: Do you exercise? Why or why not?
« on: April 05, 2015, 01:25:56 AM »
About 45 minutes every day; 3/4 running and 1/4 walking.

2494
The Flood / Re: what you think certain users actually look like
« on: April 05, 2015, 01:06:29 AM »
Well I can safely say I fall into neither of the weeb descriptions.
I still see you as your Batman avatar on Skype, and I don't think anything can erase that from my head.

2495
The Flood / Re: Beta testing: Sep7agon Supporter Nameplate
« on: April 04, 2015, 10:18:07 PM »


Cheat wanted it pink. I delivered.
The background is overpowering and the luminosity of the heart and text don't match. Lighten the text or make the heart transparent.

2496
The Flood / Re: Do you take orders better from a man or woman?
« on: April 04, 2015, 10:09:59 PM »
I take orders better from an intelligent person than a stupid person. Gender is irrelevant.

2497
The Flood / Re: Beta testing: Sep7agon Supporter Nameplate
« on: April 04, 2015, 06:42:36 PM »
I do not grudges with anything
lolol
Why did you remove a word when quoting me?
LOL I KNEW IT

I KNEW YOU WOULD DO THAT

The word wasn't there, it's just that you edited so fast the edit doesn't show. It's a glitch.
It's actually the 42 second edit grace period, where you can quickly fix a mistake without that edit message appearing...

But please, keep it civil. :)

2498
The Flood / Re: Beta testing: Sep7agon Supporter Nameplate
« on: April 04, 2015, 05:47:27 PM »
This is pretty pointless, since anyone with a custom nameplate can just use it anyway.

Well there's the warning system to fix that. Takes away your nameplate.
The bonus for being a supporter would most likely take the form of a Supporter rank and an icon next to your name (like mods and admins). The nameplate would obviously be included in the package, but with Imposter...it's impossible to really punish someone for using it.

2499
The Flood / Re: Beta testing: Sep7agon Supporter Nameplate
« on: April 04, 2015, 05:41:55 PM »
Deci, I actually do like what you're doing here with the green one. I have a user theme I've been wanting to use for a rank for a while, but it was very bright and too official-looking for a regular prefix/rank.

I'd ask that you post a few more of the green ones with the bold off, just for reference. Also, your spacing in-between characters is a bit off, especially with the septagon in the middle. Fix that in the new plates as well and you may be onto something.

EDIT: but yeah, Isara might have a small point with the use of the icon. I'd try out a few different options if I were you and see if you can find anything that works.

2500
Serious / Re: Would anyone be interested in a formal debate?
« on: April 04, 2015, 03:51:12 PM »
I'd like to see a formal debate take place in a podcast, actually. That would be interesting to listen to.

2501
The Flood / Re: A suggestion for improving the website: Donation runs
« on: April 04, 2015, 03:50:08 PM »
Sep7agon needs microtransactions
$0.50 for an upboat!

And yeah, I've thought about it. It might eventually happen, too, but I don't currently have any plans to open up donations. That's not to say I'm against it, but right now I have other stuff I'm working on and the ads are adequate for keeping us afloat for now.

That said, SMF does have a premium membership feature that would make this really easy, so we'll just see. Would any of you guys actually be interested in donating like $5 to $10 per month if it disabled ads for you?

2502
The Flood / Re: HTML + CSS problem need help
« on: April 04, 2015, 03:36:32 PM »
Put !important at the end of every one of them and see if it works. If you're trying to override styling that is already there, yours needs to take priority.

color: #5a5a5a;
color: #5a5a5a !important;
No, it's just that I've no idea where I'm supposed to put it. Should it be over <div class="nav">, under it, or in it?
The style element goes in the <head>, but you'd probably be better off just linking a stylesheet to make things neat.

Code: [Select]
<head>
    <link rel="stylesheet" type="text/css" href="style.css" />
</head>

And then name your stylesheet "style.css".
I don't want the style itself, I want the color and the rest, not the style. All of those things but the style. For it to work without the style. Without the style, it doesn't work.
I genuinely have no idea what you're talking about. If you don't want to link a stylesheet, then put your <style> block you have there, with !important placed at the end of each styling, inside the <head> of whatever HTML file you're editing.
I just want to change the colour, and the font size. those things, but I don't know where to put in the instructions for that.

Where do I put in
Code: [Select]
color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  text-transform: uppercase; }
It won't fit in anywhere

but if I were to type stylecss blabla then the site allows me to pass, but it does jack shit
Which items on the site are you trying to change? The links in the nav bar? Or just links in general?
The nav bar
Put this in a stylish theme:

Code: [Select]
#headerContainer nav ul li a { /** changes color of inactive links in nav **/
    color: red !important;
}

#headerContainer nav ul li a.current_b { /** changes color of active link in nav **/
    color: #FFFFFF !important;
}

#headerContainer nav ul li { /** this is for changing the font size for all links in the nav **/
    font-size: 12px !important;
}

Change colors/sizes as desired.
Look, I appreciate your help, but I've no idea where to put any of that. I can't just put it on its own nowhere, because then it's just white. If it's red, then it means it has a function, whereas white is inactive.
https://userstyles.org/

It is a plugin with Chrome and FireFox. Get it and dump what I posted into it, apply it to Sep7agon.net, and you're done.
I'm trying to learn how to program, I don't actually need it right now.

Look, it'd be much easier if we start from square one.

Description:
1)The CSS selector .nav a selects any a element nested inside an HMTL element with a class named "nav."

2)The color property sets the color of a element text to #5a5a5a.

3)The font-size property changes the size of a element text to 24px.
I get this, I understand and comprehend it all
How the finished version is supposed to look like:
Code: [Select]
.nav a {
  color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  text-transform: uppercase;
}
Alright, but where is it supposed to be placed in the text?

I just want to follow the instructions, and it says that ^ is how the finished one is supposed to look like. I've no idea where to put this; under something or over it. Where in the text does that piece of coding fit in? If I put it on its own, it won't accept it.

It can't look like this:
Code: [Select]
<!DOCTYPE html>
<html>
  <head>
    <link href="main.css" rel="stylesheet">
  </head>
 
  <body>
    <div class="nav">
    .nav a {
  color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  text-transform: uppercase;
}
      <div class="container">
        <ul>
          <li><a href="#">Airbnb logo</a></li>
          <li><a href="#">Browse</a></li>
        </ul>
        <ul>
          <li><a href="#">Sign Up</a></li>
          <li><a href="#">Log In</a></li>
          <li><a href="#">Help</a></li>
        </ul>
      </div>
    </div>
Again, ^ Is a bad one, it doesn't work that way, so how does it work?
Code: [Select]
<!DOCTYPE html>
<html>
  <head>
    <link href="main.css" rel="stylesheet">
    <style type="text/css">
        .nav a {
  color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  text-transform: uppercase;
}
   </style>
  </head>
 
  <body>
    <div class="nav">
      <div class="container">
        <ul>
          <li><a href="#">Airbnb logo</a></li>
          <li><a href="#">Browse</a></li>
        </ul>
        <ul>
          <li><a href="#">Sign Up</a></li>
          <li><a href="#">Log In</a></li>
          <li><a href="#">Help</a></li>
        </ul>
      </div>
    </div>
In the <head>, inside a <style> tag.

2503
The Flood / Re: HTML + CSS problem need help
« on: April 04, 2015, 03:24:38 PM »
Put !important at the end of every one of them and see if it works. If you're trying to override styling that is already there, yours needs to take priority.

color: #5a5a5a;
color: #5a5a5a !important;
No, it's just that I've no idea where I'm supposed to put it. Should it be over <div class="nav">, under it, or in it?
The style element goes in the <head>, but you'd probably be better off just linking a stylesheet to make things neat.

Code: [Select]
<head>
    <link rel="stylesheet" type="text/css" href="style.css" />
</head>

And then name your stylesheet "style.css".
I don't want the style itself, I want the color and the rest, not the style. All of those things but the style. For it to work without the style. Without the style, it doesn't work.
I genuinely have no idea what you're talking about. If you don't want to link a stylesheet, then put your <style> block you have there, with !important placed at the end of each styling, inside the <head> of whatever HTML file you're editing.
I just want to change the colour, and the font size. those things, but I don't know where to put in the instructions for that.

Where do I put in
Code: [Select]
color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  text-transform: uppercase; }
It won't fit in anywhere

but if I were to type stylecss blabla then the site allows me to pass, but it does jack shit
Which items on the site are you trying to change? The links in the nav bar? Or just links in general?
The nav bar
Put this in a stylish theme:

Code: [Select]
#headerContainer nav ul li a { /** changes color of inactive links in nav **/
    color: red !important;
}

#headerContainer nav ul li a.current_b { /** changes color of active link in nav **/
    color: #FFFFFF !important;
}

#headerContainer nav ul li { /** this is for changing the font size for all links in the nav **/
    font-size: 12px !important;
}

Change colors/sizes as desired.
Look, I appreciate your help, but I've no idea where to put any of that. I can't just put it on its own nowhere, because then it's just white. If it's red, then it means it has a function, whereas white is inactive.
https://userstyles.org/

It is a plugin with Chrome and FireFox. Get it and dump what I posted into it, apply it to Sep7agon.net, and you're done.

2504
The Flood / Re: HTML + CSS problem need help
« on: April 04, 2015, 03:15:50 PM »
Put !important at the end of every one of them and see if it works. If you're trying to override styling that is already there, yours needs to take priority.

color: #5a5a5a;
color: #5a5a5a !important;
No, it's just that I've no idea where I'm supposed to put it. Should it be over <div class="nav">, under it, or in it?
The style element goes in the <head>, but you'd probably be better off just linking a stylesheet to make things neat.

Code: [Select]
<head>
    <link rel="stylesheet" type="text/css" href="style.css" />
</head>

And then name your stylesheet "style.css".
I don't want the style itself, I want the color and the rest, not the style. All of those things but the style. For it to work without the style. Without the style, it doesn't work.
I genuinely have no idea what you're talking about. If you don't want to link a stylesheet, then put your <style> block you have there, with !important placed at the end of each styling, inside the <head> of whatever HTML file you're editing.
I just want to change the colour, and the font size. those things, but I don't know where to put in the instructions for that.

Where do I put in
Code: [Select]
color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  text-transform: uppercase; }
It won't fit in anywhere

but if I were to type stylecss blabla then the site allows me to pass, but it does jack shit
Which items on the site are you trying to change? The links in the nav bar? Or just links in general?
The nav bar
Put this in a stylish theme:

Code: [Select]
#headerContainer nav ul li a { /** changes color of inactive links in nav **/
    color: red !important;
}

#headerContainer nav ul li a.current_b { /** changes color of active link in nav **/
    color: #FFFFFF !important;
}

#headerContainer nav ul li { /** this is for changing the font size for all links in the nav **/
    font-size: 12px !important;
}

Change colors/sizes as desired.

2505
The Flood / Re: HTML + CSS problem need help
« on: April 04, 2015, 03:09:12 PM »
Put !important at the end of every one of them and see if it works. If you're trying to override styling that is already there, yours needs to take priority.

color: #5a5a5a;
color: #5a5a5a !important;
No, it's just that I've no idea where I'm supposed to put it. Should it be over <div class="nav">, under it, or in it?
The style element goes in the <head>, but you'd probably be better off just linking a stylesheet to make things neat.

Code: [Select]
<head>
    <link rel="stylesheet" type="text/css" href="style.css" />
</head>

And then name your stylesheet "style.css".
I don't want the style itself, I want the color and the rest, not the style. All of those things but the style. For it to work without the style. Without the style, it doesn't work.
I genuinely have no idea what you're talking about. If you don't want to link a stylesheet, then put your <style> block you have there, with !important placed at the end of each styling, inside the <head> of whatever HTML file you're editing.
I just want to change the colour, and the font size. those things, but I don't know where to put in the instructions for that.

Where do I put in
Code: [Select]
color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  text-transform: uppercase; }
It won't fit in anywhere

but if I were to type stylecss blabla then the site allows me to pass, but it does jack shit
Which items on the site are you trying to change? The links in the nav bar? Or just links in general?

2506
The Flood / Re: HTML + CSS problem need help
« on: April 04, 2015, 03:04:37 PM »
Put !important at the end of every one of them and see if it works. If you're trying to override styling that is already there, yours needs to take priority.

color: #5a5a5a;
color: #5a5a5a !important;
No, it's just that I've no idea where I'm supposed to put it. Should it be over <div class="nav">, under it, or in it?
The style element goes in the <head>, but you'd probably be better off just linking a stylesheet to make things neat.

Code: [Select]
<head>
    <link rel="stylesheet" type="text/css" href="style.css" />
</head>

And then name your stylesheet "style.css".
I don't want the style itself, I want the color and the rest, not the style. All of those things but the style. For it to work without the style. Without the style, it doesn't work.
I genuinely have no idea what you're talking about. If you don't want to link a stylesheet, then put your <style> block you have there, with !important placed at the end of each styling, inside the <head> of whatever HTML file you're editing.

2507
The Flood / Re: HTML + CSS problem need help
« on: April 04, 2015, 02:57:04 PM »
Put !important at the end of every one of them and see if it works. If you're trying to override styling that is already there, yours needs to take priority.

color: #5a5a5a;
color: #5a5a5a !important;
No, it's just that I've no idea where I'm supposed to put it. Should it be over <div class="nav">, under it, or in it?
The style element goes in the <head>, but you'd probably be better off just linking a stylesheet to make things neat.

Code: [Select]
<head>
    <link rel="stylesheet" type="text/css" href="style.css" />
</head>

And then name your stylesheet "style.css".

2508
The Flood / Re: HTML + CSS problem need help
« on: April 04, 2015, 02:51:21 PM »
Put !important at the end of every one of them and see if it works. If you're trying to override styling that is already there, yours needs to take priority.

color: #5a5a5a;
color: #5a5a5a !important;

2509
News / Re: The End of Anarchy (or is it?)
« on: April 04, 2015, 09:48:35 AM »
isn't this whole site basically just a big private group though
We need to go deeper...

2510
I reject this fuckin' race
I despise this fuckin' place
I do not want them Sam I am
I do not like green eggs and ham
Homicide-Suicide
Hate heals, you should try it sometime
Strive for Peace with acts of war
The beauty of death we all adore
I have no faith distracting me
I know why your prayers will never be answered

God Hates Us All; God Hates Us All
He Fuckin' hates me
Please stop derailing the thread. :)

2511

And Cheat.
lol
I honestly didn't know that this was a thing until now (at least knowing it was as widespread as it seems to be from reading this thread).
are you black? People told me you're black.
Half black, half albino, and half Jew.

2512
I honestly didn't know that this was a thing until now (at least knowing it was as widespread as it seems to be from reading this thread).
Asexuality? Yeah, I know someone else who claims to be asexual, as well.

Bnet just has a way of rounding up all the sexual deviants.
Wut. ???

I didn't know guys treated every girl like they were going to have sex with them.

2513
And Cheat.
lol
I honestly didn't know that this was a thing until now (at least knowing it was as widespread as it seems to be from reading this thread).

2514
Gaming / Re: I'm going to try to go back into map making for Halo
« on: April 03, 2015, 06:56:24 PM »
Make .yelo maps faggot

How? With what? Sauce?
IIRC, yelo allows the use of AI in Halo multiplayer.
Edit: sorry, I thought you were asking what they were when you said sauce.

Also, you should make Team Fortress 2 maps.

I would if I knew how to use the Source SDK well but I don't. I'm barely getting the hang of learning Halo's stuff here. Also I don't really play TF2. I'm actually going to test out a .yelo map right now to see what's different from the regular .map files. This download shouldn't take long.
I'm not familiar with what you can do with yelo on PC, but I do know that on Halo 2 for Xbox, you could basically play multiplayer against the computer (or with the computer).

And I'm just saying to model a map off of TF2. Do 2-Fort; it's a symmetrical map that's good for CTF.

2515
Gaming / Re: I'm going to try to go back into map making for Halo
« on: April 03, 2015, 06:49:53 PM »
Make .yelo maps faggot

How? With what? Sauce?
IIRC, yelo allows the use of AI in Halo multiplayer.
Edit: sorry, I thought you were asking what they were when you said sauce.

Also, you should make Team Fortress 2 maps.

2516
Septagon / Re: Youtube embedding question
« on: April 03, 2015, 10:56:15 AM »
Works fine bro. Just cut out the "m." Part of the url and it links perfectly.

That's on Safari with an iPhone.
That's doable but it's a pain. Usually I'm using the app on mobile so I'd have to search for the video in the browser then go through the fun of selecting, copying, pasting in the small space between brackets, and then deleting the first bit. Every time.

Touch screens suck. I'm always clicking on the wrong thing and it gets annoying going through that process every time. I'd rather just copy, paste, and done if possible.
What app?

Just use the mobile version of the page. Here's nothing painful about deleting 2 characters.
The YouTube app. Who uses their browser? I just went through and explained why it's a pain. Cheat already said they'll get added. Why are you still arguing with me bitch?
TBH they really should have something on the app to grab the original video's URL. It would fix a lot of situations like this one.

2517
The Flood / Re: Time heals all wounds
« on: April 02, 2015, 02:15:31 AM »

2518
Septagon / Re: Youtube embedding question
« on: April 02, 2015, 02:14:37 AM »
Mobile links will likely be added, but time stamps are another story. I'd like for it to happen, but I have loads of other things to do.

2519
The Flood / Re: Announcement of the new mod.
« on: April 01, 2015, 08:47:45 PM »
can i be guy to ban people too
yes

on bungle
im aiming to expand my horizons

why be admin of one site when you can be admin of two
So when am I getting that admin spot on your site, then? 8)

2520
News / April Fools!
« on: April 01, 2015, 08:27:56 PM »
Yes, that account suspension warning was fake. I'm sorry if I gave you heart problems from the shock, but the opportunity was too much to resist.

Forgive me?

Spoiler

Pages: 1 ... 828384 8586 ... 212