FC Glitch Update

15859606163

Comments

  • _Bloody_Fox_ - Lost City
    _Bloody_Fox_ - Lost City Posts: 224 Arc User
    edited August 2012
    poooooooooooooooooooooooooooooooooooooooooooooop. That is what this whole situation is.
    [SIGPIC][/SIGPIC]
    Facebook.com/tangyfox
    EX Legendary on Sanctuary
    Moved to LC to PK
  • bearyflair
    bearyflair Posts: 0 Arc User
    edited August 2012
    Do you really have a purple butt?

    I dunno if her butt is purple but it does seems to be hurting b:chuckle
  • gouraudpalm2
    gouraudpalm2 Posts: 72 Arc User
    edited August 2012
    Fix the loot quality and get rid of the RMAH!.

    Oops, it's hard to tell the diference between this forum and the D3 one.
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    Seeing as this page is now to 190 pages or somewhere in there, I'd like to put in my two cents.

    First off Leave the message board mods and GMs alone. They have no real power unless it's on these boards. They can only do so much.

    Second, The rest of you may not realize how difficult coding is. So here. Let me post some random coding for you to understand how hard it is to write/read.

    Maze

    #include
    #include
    #include "maze.h"


    // =============================> Maze Objects <====================
    // Maze object data members:
    // int _max_row;
    // int _max_col;
    // char _map[MAX_MAZE_DIM+1][MAX_MAZE_DIM+1];

    // ============================> report_err <=======================
    static void report_err(const char* message)
    {
    cout << "FATAL ERROR (Maze): " << message << endl;
    exit(1);
    }

    // ========================> member functions <=====================

    // ========================> Constructors <==================
    Maze::Maze()
    {
    *this = Maze(7,7);
    }

    Maze::Maze(int rows, int cols)
    {
    if (rows > MAX_MAZE_DIM || cols > MAX_MAZE_DIM)
    report_err("Attempted to create overly large Maze");
    _max_row = rows;
    _max_col = cols;
    for(int row = 1; row <= rows; row++)
    for(int col = 1; col <= cols; col++)
    _map[row][col] = '.';
    }

    // =======================> max_row <========================
    int Maze::max_row() const
    { return _max_row;
    }

    // ======================> max_col <=========================
    int Maze::max_col() const
    { return _max_col;
    }

    // =====================> is_open <==========================
    int Maze::is_open(int i, int j) const
    // PRE: VALID_POS(i, j)
    // POST: FCTVAL == position (i, j) of this maze is open (contains a '.')
    {
    if (i < 1 || i > _max_row)
    report_err("Attempted to check cell row outside of maze dimensions");

    if (j < 1 || j > _max_col)
    report_err("Attempted to check cell column outside of maze dimensions");

    if (_map[j] == '.') // if current spot in maze is passible
    return (1); // return 1 ==> TRUE
    else
    return (0);
    }

    // ====================> mark <==============================
    void Maze::mark(int row, int col, char marker)
    {
    if (!is_open(row,col))
    report_err("Attempt to mark an non-open Maze cell");
    _map[row][col] = marker;
    }

    // ===================> unmark <=============================
    void Maze::unmark(int row, int col)
    // PRE: VALID_POS(row, col) &&
    // _map[row][col] != '*'
    // POST: is_open(row, col)
    {
    if (_map[row][col] != '*')
    _map[row][col] = '.'; // reset current spot in maze to passible

    return;
    }

    // ===================> stream output <======================
    ostream& operator<<(ostream& stream, Maze m)
    {
    for(int row = 1; row <= m._max_row; row++)
    {
    for(int col = 1; col <= m._max_col; col++)
    stream.put(m._map[row][col]);
    stream << endl;
    }
    stream << flush;
    return stream;
    }

    // ==================> stream input <=======================
    istream& operator>>(istream& stream, Maze& m)
    { char ch;

    for(int row = 1; row <= m._max_row; row++)
    {
    for(int col = 1; col <= m._max_col; col++)
    {
    stream.get(ch);
    if (ch == '.' || ch == ' ')
    m._map[row][col] = '.';
    else
    m._map[row][col] = '*';
    }
    stream.ignore(50,'\n');
    }
    return stream;
    }


    Mind you the above is a simple game, coded correctly, and in an order that's legable, not to mention in a language that's common (c++) where as this game is probably written in ruby or some other random, backward-*** language, and in chinese to boot.

    Next, I'd like to say if they banned everyone perminently for abusing a glitch, then those who noticed that the heroic chest deliveries were glitched and kept buying them would be banned right now, along with those who glitched fc, those who glitched SP, those who glitched TT, and those who glitched cube. Yes all of those areas either have an active glitched that's known to be abused, or used to.

    Banning people perminently is not a good idea, as PWE functions off of stock holder revenue and money brought in through the cash shop. If you eliminate the people putting the money on the game, you are losing revenue, and that hurts your bottom line.


    Finally, if you're leaving the game, don't say anything. Just go. PWE will get the message when you suddenly stop putting real money into a game for virtual items.
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • TrueMax - Sanctuary
    TrueMax - Sanctuary Posts: 37 Arc User
    edited August 2012
    Seeing as this page is now to 190 pages or somewhere in there, I'd like to put in my two cents.

    First off Leave the message board mods and GMs alone. They have no real power unless it's on these boards. They can only do so much.

    Second, The rest of you may not realize how difficult coding is. So here. Let me post some random coding for you to understand how hard it is to write/read.

    As for the coding if you know what your doing it NOT hard, TIME CONSUMING yes,
    I equate coding to higher levels of math. At first it seems like gobbledygook till you LEARN how to do the math and again its time consuming. Your also trying to compare apples to oranges by throwing scripting languages (ruby) into the fray comparing it to a coding langauge (c++). Nice try tho. As far as complaining this is the avenue we are supposed to do it at. tickets are worthless when u see that they will do nothing anyways.

    As far as the rest of the glitches, do people even care? like i stated earlier its pointless to follow the rules when they don't enforce them, heroic chest being the latest example. As long as they say "Oh sorry its our bad" no one will be punished, in fact they are secretly rewarding CS'ers ^_^
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    +10 post count.
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    Yay again this thread *adds more post count*
    The only way to beat a troll is....to troll him back b:angry
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    Yay again this thread *adds more post count*

    Keep +1 posting :D

    Since they won't lock the thread :P
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    As long as they say "Oh sorry its our bad" no one will be punished, in fact they are secretly rewarding CS'ers ^_^



    OMG you're right I've never thought of that before now! That's exactly what they must be doing! [/sarcasm]

    Haven't they been doing that for years, comming up with new ways to release these
    epic
    items for these fools who complain in tickets that they get crud out of packs when they just put a hundred bucks on the game, to try and pull it, and all they got was a charm and a Best of luck token?
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    Keep +1 posting :D

    Since they won't lock the thread :P

    b:laugh
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    I like mayonese
    The only way to beat a troll is....to troll him back b:angry
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    I like mayonese

    I don't.
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    With ketchup
    The only way to beat a troll is....to troll him back b:angry
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    Not much
    The only way to beat a troll is....to troll him back b:angry
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    gogo lets make this have over 9000! posts.
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    Do you like Waffles? Ya we like Waffles. :D

    There was a guy named waffles on one of the servers....


    And as for Ketchup, I met a kid named ketchup at Lazertag once. He wanted to know if he could pistol whip people with his Lazertag gun. I thought he was the most adorable 5 year old I had ever seen.
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    gogo lets make this have over 9000! posts.

    So then we can abuse an internet meme and post vids of it hitting 9000 on youtube?
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    My favourite pony its Pinky Pie 'cause she's totally nuts b:laugh
    The only way to beat a troll is....to troll him back b:angry
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    i don't watch MLP and duh old over used memes are the cool thing to do.
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    My favourite pony its Pinky Pie 'cause she's totally nuts b:laugh

    WTF is Derpy pony. Did they actually make it? Or was it someone's idea of a joke that got turned into a real thing?
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    I don't known what's a derph pony b:avoid
    The only way to beat a troll is....to troll him back b:angry
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    How the hell are we THIS off topic to talk about MLP. WTF. Anyways. Buttsex. That is all.
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    I think at one point at doing this earlier I got a mod to join us on the +1 partaking :O

    Krisnda wrote: »
    If the opposite of open is closed, then is the opposite of QQ, RR?
    I don't get it.

    and another +1 post count to this useless thread :D
    Krisnda wrote: »
    Your not supposed to, just making convo xD.
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    Soooo rookie -- ****,that's all
    The only way to beat a troll is....to troll him back b:angry
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    only 7114 posts to go >.>
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • BerserkBeast - Sanctuary
    BerserkBeast - Sanctuary Posts: 1,417 Arc User
    edited August 2012
    lol I already got bored then -- Imma look for **** videos b:avoid
    The only way to beat a troll is....to troll him back b:angry
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    Soooo rookie -- ****,that's all


    No, it's an anal evacuation. Gwa ha ha ha ha.
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
  • KawaiiJen - Heavens Tear
    KawaiiJen - Heavens Tear Posts: 2,461 Arc User
    edited August 2012
    7111 posts to go :D
    [SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
    Ty Fon for the Siggy <3

    The rare and exotic Sage Archer of HT. b:cute
  • F_M_Joshua - Archosaur
    F_M_Joshua - Archosaur Posts: 390 Arc User
    edited August 2012
    Update: The glitch is back.




































































    Now let's see how many players run off to check, just b/c i put a doubt in their head.
    If you don't like the way I talk, please, for everyone's sanity, keep in mind that I have ASPERGERS. I don't see a reason to not tell you like it is, or what I think of you. If you are being an idiot, or one minded, I tend to disregard you like trash.
This discussion has been closed.