FC Glitch Update
Comments
-
poooooooooooooooooooooooooooooooooooooooooooooop. That is what this whole situation is.[SIGPIC][/SIGPIC]
Facebook.com/tangyfox
EX Legendary on Sanctuary
Moved to LC to PK0 -
Tsukyini - Raging Tide wrote: »Do you really have a purple butt?
I dunno if her butt is purple but it does seems to be hurting b:chuckle0 -
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.0 -
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.0 -
F_M_Joshua - Archosaur wrote: »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 ^_^0 -
+10 post count.[SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
Ty Fon for the Siggy
The rare and exotic Sage Archer of HT. b:cute0 -
Yay again this thread *adds more post count*The only way to beat a troll is....to troll him back b:angry0
-
BerserkBeast - Sanctuary wrote: »Yay again this thread *adds more post count*
Keep +1 posting
Since they won't lock the thread :P[SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
Ty Fon for the Siggy
The rare and exotic Sage Archer of HT. b:cute0 -
TrueMax - Sanctuary wrote: »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 theseepicIf 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.0 -
I like mayoneseThe only way to beat a troll is....to troll him back b:angry0
-
KawaiiJen - Heavens Tear wrote: »Keep +1 posting
Since they won't lock the thread :P
b:laughIf 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.0 -
BerserkBeast - Sanctuary wrote: »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.0 -
With ketchupThe only way to beat a troll is....to troll him back b:angry0
-
[SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
Ty Fon for the Siggy
The rare and exotic Sage Archer of HT. b:cute0 -
Not muchThe only way to beat a troll is....to troll him back b:angry0
-
gogo lets make this have over 9000! posts.[SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
Ty Fon for the Siggy
The rare and exotic Sage Archer of HT. b:cute0 -
KawaiiJen - Heavens Tear wrote: »Do you like Waffles? Ya we like Waffles.
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.0 -
KawaiiJen - Heavens Tear wrote: »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.0 -
My favourite pony its Pinky Pie 'cause she's totally nuts b:laughThe only way to beat a troll is....to troll him back b:angry0
-
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
The rare and exotic Sage Archer of HT. b:cute0 -
BerserkBeast - Sanctuary wrote: »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.0 -
I don't known what's a derph pony b:avoidThe only way to beat a troll is....to troll him back b:angry0
-
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.0
-
I think at one point at doing this earlier I got a mod to join us on the +1 partaking :OIf the opposite of open is closed, then is the opposite of QQ, RR?KawaiiJen - Heavens Tear wrote: »I don't get it.
and another +1 post count to this useless threadYour not supposed to, just making convo xD.[SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
Ty Fon for the Siggy
The rare and exotic Sage Archer of HT. b:cute0 -
Soooo rookie -- ****,that's allThe only way to beat a troll is....to troll him back b:angry0
-
only 7114 posts to go >.>[SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
Ty Fon for the Siggy
The rare and exotic Sage Archer of HT. b:cute0 -
lol I already got bored then -- Imma look for **** videos b:avoidThe only way to beat a troll is....to troll him back b:angry0
-
BerserkBeast - Sanctuary wrote: »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.0 -
7111 posts to go[SIGPIC]http://i48.tinypic.com/2r61kw3.jpg[/SIGPIC]
Ty Fon for the Siggy
The rare and exotic Sage Archer of HT. b:cute0 -
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.0
This discussion has been closed.
Categories
- All Categories
- 181.9K PWI
- 697 Official Announcements
- 2 Rules of Conduct
- 264 Cabbage Patch Notes
- 61K General Discussion
- 1.5K Quality Corner
- 11.1K Suggestion Box
- 77.4K Archosaur City
- 3.5K Cash Shop Huddle
- 14.3K Server Symposium
- 18.1K Dungeons & Tactics
- 2K The Crafting Nook
- 4.9K Guild Banter
- 6.6K The Trading Post
- 28K Class Discussion
- 1.9K Arigora Colosseum
- 78 TW & Cross Server Battles
- 337 Nation Wars
- 8.2K Off-Topic Discussion
- 3.7K The Fanatics Forum
- 207 Screenshots and Videos
- 22.8K Support Desk