Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Remove Ad, Sign Up
Register to Remove Ad
Register to Remove Ad
Signup for Free!
-More Features-
-Far Less Ads-
About   Users   Help
Users & Guests Online
On Page: 1
Directory: 121
Entire Site: 8 & 1881
Page Staff: pokemon x, pennylessz, Barathemos, tgags123, alexanyways, supercool22, RavusRat,
06-09-24 10:51 AM

Thread Information

Views
12,997
Replies
126
Rating
9
Status
CLOSED
Thread
Creator
Davideo7
07-01-14 08:15 PM
Last
Post
Davideo7
08-01-14 01:01 AM
Additional Thread Details
Views: 3,359
Today: 2
Users: 1 unique

Thread Actions

Thread Closed
New Thread
New Poll
Order
Posts


<<
7 Pages
>>
 

July 2014 - MEGA CASH Screenshot Competition - Video Game Characters - Earn up to US $200

 

07-11-14 08:51 PM
Fireproof is Offline
| ID: 1048801 | 272 Words

Fireproof
Level: 48


POSTS: 346/518
POST EXP: 219650
LVL EXP: 808744
CP: 11889.2
VIZ: 4005137

Likes: 0  Dislikes: 0
Davideo7 : Down rating character screen shots sounds like a lot of work... Wouldn't it just be easier to create a script to tally characters added in screen shots based on date and time these were submitted? Screen shots are already submitted with a date and time which they were added so making a script for character points in relation to their submitted dates and time should be possible. Even if users were to add characters to pre-existing screen shots you should be able to make the script check for those added characters and add/prevent points if that added character is done after an already existing screenshot. You already have this set so users can't add the same characters in multiple screen shots since it's 1 point per character per game so theoretically speaking the script attributes only 1 point per character per game to only 1 member (The first submitter).

This should be much easier than investigating thousands of screen shots, down rating duplicates and recalculate the points manually. You also have to consider that some screen shots might have duplicate characters with 1 or more characters that have other characters on them. In this case, players can gain what could be seen as unfair points when regarding the rule. You should also consider that there are 12k characters at this moment and we're only about 1/3 of the way through this competition. If this continues at the same rate, you can be talking about 30k characters added to Vizzed. This also implies members of Vizzed not in the top 5 who submitted screenshots of characters before those in the top 5. 
Davideo7 : Down rating character screen shots sounds like a lot of work... Wouldn't it just be easier to create a script to tally characters added in screen shots based on date and time these were submitted? Screen shots are already submitted with a date and time which they were added so making a script for character points in relation to their submitted dates and time should be possible. Even if users were to add characters to pre-existing screen shots you should be able to make the script check for those added characters and add/prevent points if that added character is done after an already existing screenshot. You already have this set so users can't add the same characters in multiple screen shots since it's 1 point per character per game so theoretically speaking the script attributes only 1 point per character per game to only 1 member (The first submitter).

This should be much easier than investigating thousands of screen shots, down rating duplicates and recalculate the points manually. You also have to consider that some screen shots might have duplicate characters with 1 or more characters that have other characters on them. In this case, players can gain what could be seen as unfair points when regarding the rule. You should also consider that there are 12k characters at this moment and we're only about 1/3 of the way through this competition. If this continues at the same rate, you can be talking about 30k characters added to Vizzed. This also implies members of Vizzed not in the top 5 who submitted screenshots of characters before those in the top 5. 
Perma Banned
Tactician


Affected by 'Laziness Syndrome'

Registered: 07-22-11
Location: Ohio, USA
Last Post: 3217 days
Last Active: 3217 days

07-11-14 09:09 PM
Davideo7 is Online
| ID: 1048811 | 266 Words

Davideo7
Level: 351


POSTS: 32445/45323
POST EXP: 3473262
LVL EXP: 814434609
CP: 191426.8
VIZ: 122391053

Likes: 0  Dislikes: 0
Fireproof : I've invested at least 3 hours into creating a query to do that and I even asked around on experts exchange and no help there. I could've made a script that flagged the screenshots when they initially got added but now it's too late for that now since we're already 1/3 of the way into the competition.

I could technically accomplish this problem using mostly PHP instead of relying on mostly mysql queries but that would be far too time consuming than what I currently can justify.

You seem like you're familiar with this sort of stuff? If so, maybe you could tell me how I could modify this query to pull off what I want it to do:


SELECT
`user_id`
, count(*)
FROM (
SELECT
@row_num :=IF( @prev_game = gcs.`game_id`
AND @prev_screen = gcs.`screenshot_id`
AND @prev_char = gcs.`character_id`
,@row_num + 1,1) AS RowNum
, gcs.`user_id`
, @prev_game := gcs.`game_id`
, @prev_screen := gcs.`screenshot_id`
, @prev_char := gcs.`character_id`
FROM game_characters_screenshot gcs

CROSS JOIN (SELECT
@row_num :=1
, @prev_game :=''
, @prev_screen :=''
, @prev_char :=''
) vars

LEFT JOIN game_screenshot gs ON gcs.screenshot_id = gs.id
ORDER BY
gcs.`game_id`
, gcs.`screenshot_id`
, gcs.`character_id`
, gs.`time` ASC
) SQ
WHERE
RowNum = 1
GROUP BY
`user_id`
;



And here's the query I'm currently using:



SELECT DISTINCT game_characters_screenshot.user_id as user_id, count( DISTINCT game_characters_screenshot.character_id, game_characters_screenshot.game_id ) AS total FROM game_characters_screenshot LEFT JOIN game ON game_characters_screenshot.game_id = game.id LEFT JOIN game_games ON game_characters_screenshot.game_id = game_games.id LEFT JOIN game_screenshot ON game_screenshot.id = game_characters_screenshot.screenshot_id WHERE hackType = '' AND game_screenshot.rating >= 3 AND cloneOf='' GROUP BY game_characters_screenshot.user_id ORDER BY total DESC
Fireproof : I've invested at least 3 hours into creating a query to do that and I even asked around on experts exchange and no help there. I could've made a script that flagged the screenshots when they initially got added but now it's too late for that now since we're already 1/3 of the way into the competition.

I could technically accomplish this problem using mostly PHP instead of relying on mostly mysql queries but that would be far too time consuming than what I currently can justify.

You seem like you're familiar with this sort of stuff? If so, maybe you could tell me how I could modify this query to pull off what I want it to do:


SELECT
`user_id`
, count(*)
FROM (
SELECT
@row_num :=IF( @prev_game = gcs.`game_id`
AND @prev_screen = gcs.`screenshot_id`
AND @prev_char = gcs.`character_id`
,@row_num + 1,1) AS RowNum
, gcs.`user_id`
, @prev_game := gcs.`game_id`
, @prev_screen := gcs.`screenshot_id`
, @prev_char := gcs.`character_id`
FROM game_characters_screenshot gcs

CROSS JOIN (SELECT
@row_num :=1
, @prev_game :=''
, @prev_screen :=''
, @prev_char :=''
) vars

LEFT JOIN game_screenshot gs ON gcs.screenshot_id = gs.id
ORDER BY
gcs.`game_id`
, gcs.`screenshot_id`
, gcs.`character_id`
, gs.`time` ASC
) SQ
WHERE
RowNum = 1
GROUP BY
`user_id`
;



And here's the query I'm currently using:



SELECT DISTINCT game_characters_screenshot.user_id as user_id, count( DISTINCT game_characters_screenshot.character_id, game_characters_screenshot.game_id ) AS total FROM game_characters_screenshot LEFT JOIN game ON game_characters_screenshot.game_id = game.id LEFT JOIN game_games ON game_characters_screenshot.game_id = game_games.id LEFT JOIN game_screenshot ON game_screenshot.id = game_characters_screenshot.screenshot_id WHERE hackType = '' AND game_screenshot.rating >= 3 AND cloneOf='' GROUP BY game_characters_screenshot.user_id ORDER BY total DESC
The Owner
Owner, Developer, Advertiser, etc
Founder, Mod, Investor


Affected by 'Laziness Syndrome'

Registered: 12-06-04
Location: Wisconsin
Last Post: 48 days
Last Active: 4 min.

(edited by Davideo7 on 07-11-14 09:11 PM)    

07-11-14 09:40 PM
Fireproof is Offline
| ID: 1048822 | 254 Words

Fireproof
Level: 48


POSTS: 347/518
POST EXP: 219650
LVL EXP: 808744
CP: 11889.2
VIZ: 4005137

Likes: 0  Dislikes: 0
Davideo7 : Honestly, I know very little about this sort of thing but what I do know is that each language is only limited to what you think you can do with it. With that said, all I can offer is suggestions as I have an endless flow of ideas. If you think of it in a technical sense, you're going to spend a ton of resources (Time and Work) to shift through many characters to verify duplicates and adjust points. Since this is your current plan, it might benefit to use PHP to solve this problem since this code can be reused later and possibly for other potential competitions.

On one hand you can go back through each screen shot individually at this point so that your work is only 1/3 of what it could be by the end of the competition. On the other hand, you can leave those screen shots as they are since this is already 1/3 of the way in. Neither would be a wrong choice in my opinion.

All I would think that you would need is to award 1 point per distinct character per distinct game for the first user to submit if that distinct character and distinct game weren't previously submitted.

I'm not totally sure how to read MySQL though... but I wonder if you need  gcs.`game_id` and , gcs.`screenshot_id` and , gcs.`character_id`  because it only needs to be ordered by time.... I'm probably wrong but maybe I was able to supply an idea or 2 here.
Davideo7 : Honestly, I know very little about this sort of thing but what I do know is that each language is only limited to what you think you can do with it. With that said, all I can offer is suggestions as I have an endless flow of ideas. If you think of it in a technical sense, you're going to spend a ton of resources (Time and Work) to shift through many characters to verify duplicates and adjust points. Since this is your current plan, it might benefit to use PHP to solve this problem since this code can be reused later and possibly for other potential competitions.

On one hand you can go back through each screen shot individually at this point so that your work is only 1/3 of what it could be by the end of the competition. On the other hand, you can leave those screen shots as they are since this is already 1/3 of the way in. Neither would be a wrong choice in my opinion.

All I would think that you would need is to award 1 point per distinct character per distinct game for the first user to submit if that distinct character and distinct game weren't previously submitted.

I'm not totally sure how to read MySQL though... but I wonder if you need  gcs.`game_id` and , gcs.`screenshot_id` and , gcs.`character_id`  because it only needs to be ordered by time.... I'm probably wrong but maybe I was able to supply an idea or 2 here.
Perma Banned
Tactician


Affected by 'Laziness Syndrome'

Registered: 07-22-11
Location: Ohio, USA
Last Post: 3217 days
Last Active: 3217 days

07-11-14 09:59 PM
Davideo7 is Online
| ID: 1048831 | 24 Words

Davideo7
Level: 351


POSTS: 32448/45323
POST EXP: 3473262
LVL EXP: 814434609
CP: 191426.8
VIZ: 122391053

Likes: 0  Dislikes: 0
Fireproof : I guess we'll just have to wait and see what I have time for as the month progresses. Thanks for all the input.
Fireproof : I guess we'll just have to wait and see what I have time for as the month progresses. Thanks for all the input.
The Owner
Owner, Developer, Advertiser, etc
Founder, Mod, Investor


Affected by 'Laziness Syndrome'

Registered: 12-06-04
Location: Wisconsin
Last Post: 48 days
Last Active: 4 min.

07-14-14 05:04 PM
Teh Doge Wit Nustrils is Offline
| ID: 1050051 | 5 Words


mostcheats43
Level: 22


POSTS: 8/94
POST EXP: 3306
LVL EXP: 56321
CP: 712.8
VIZ: 54397

Likes: 0  Dislikes: 0
Davideo7 : Wow this doesn't sound easy
Davideo7 : Wow this doesn't sound easy
Member

Affected by 'Laziness Syndrome'

Registered: 12-25-13
Location: Steam
Last Post: 2876 days
Last Active: 556 days

07-14-14 07:13 PM
rcarter2 is Offline
| ID: 1050114 | 83 Words

rcarter2
Level: 161


POSTS: 8103/8463
POST EXP: 758515
LVL EXP: 53869547
CP: 33586.4
VIZ: 1689508

Likes: 0  Dislikes: 0
Broke the 4,000 mark. And with that, I think the last Yu-Gi-Oh! game has been completed. I am glad. I am sick of looking at Yu-Gi-Oh! cards. I was really not wanting to do that in the first place. But 3 users were on those pretty hard, and I was just struggling to even keep up. So I kind of had no choice

But at least they are done, and I can finally look at other games to do characters for
Broke the 4,000 mark. And with that, I think the last Yu-Gi-Oh! game has been completed. I am glad. I am sick of looking at Yu-Gi-Oh! cards. I was really not wanting to do that in the first place. But 3 users were on those pretty hard, and I was just struggling to even keep up. So I kind of had no choice

But at least they are done, and I can finally look at other games to do characters for
Vizzed Elite
Dominating RGR Competition Hall of Fame Table!


Affected by 'Laziness Syndrome'

Registered: 05-01-11
Location: Kansas
Last Post: 2511 days
Last Active: 820 days

07-14-14 07:19 PM
madison is Offline
| ID: 1050120 | 128 Words

madison
Level: 38

POSTS: 234/296
POST EXP: 15975
LVL EXP: 358074
CP: 5289.9
VIZ: 256023

Likes: 0  Dislikes: 0
Well this was fun while it lasted. Going in and tagging characters and enemies was fun, but as soon as it turned into the brain-dead sit at your computer for hours on end tagging 1000's of Yu-Gi-Oh cards, I've started to lose interest. The Yu-Gi-Oh games are just too darn lucrative for a competition of this sort. You don't even have to play the games to earn the cards. You just look up a password list to enter in for the cards. I could tolerate doing it myself for a little bit, but I think my brain'll turn to mush if I so much as look at another Yu-Gi-Oh card.

Next up, people will be tagging the same ol' cards for the JP language Yu-Gi-Oh games. . .
Well this was fun while it lasted. Going in and tagging characters and enemies was fun, but as soon as it turned into the brain-dead sit at your computer for hours on end tagging 1000's of Yu-Gi-Oh cards, I've started to lose interest. The Yu-Gi-Oh games are just too darn lucrative for a competition of this sort. You don't even have to play the games to earn the cards. You just look up a password list to enter in for the cards. I could tolerate doing it myself for a little bit, but I think my brain'll turn to mush if I so much as look at another Yu-Gi-Oh card.

Next up, people will be tagging the same ol' cards for the JP language Yu-Gi-Oh games. . .
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 11-26-10
Last Post: 3301 days
Last Active: 1921 days

07-14-14 08:13 PM
rcarter2 is Offline
| ID: 1050148 | 12 Words

rcarter2
Level: 161


POSTS: 8104/8463
POST EXP: 758515
LVL EXP: 53869547
CP: 33586.4
VIZ: 1689508

Likes: 0  Dislikes: 0
madison : Probably should erase that so nobody sees that last part
madison : Probably should erase that so nobody sees that last part
Vizzed Elite
Dominating RGR Competition Hall of Fame Table!


Affected by 'Laziness Syndrome'

Registered: 05-01-11
Location: Kansas
Last Post: 2511 days
Last Active: 820 days

07-14-14 08:21 PM
mourinhosgum is Offline
| ID: 1050150 | 52 Words

mourinhosgum
Level: 92


POSTS: 2131/2355
POST EXP: 72922
LVL EXP: 7578722
CP: 2754.0
VIZ: 7839

Likes: 0  Dislikes: 0
rcarter2 : How much did you do? 3 yugioh games or 2. Also, when this competition started i said it's gonna be about endurance. And how much of sitting there tagging things you can go through. Nice 1.3k lead though. You may have this in the bag.

madison : First i need to learn japanese.lol
rcarter2 : How much did you do? 3 yugioh games or 2. Also, when this competition started i said it's gonna be about endurance. And how much of sitting there tagging things you can go through. Nice 1.3k lead though. You may have this in the bag.

madison : First i need to learn japanese.lol
Perma Banned
I'll grapple down that god of fear and throw him into hell's fire


Affected by 'Laziness Syndrome'

Registered: 05-25-12
Location: canada
Last Post: 3381 days
Last Active: 3376 days

07-14-14 08:34 PM
Davideo7 is Online
| ID: 1050153 | 198 Words

Davideo7
Level: 351


POSTS: 32510/45323
POST EXP: 3473262
LVL EXP: 814434609
CP: 191426.8
VIZ: 122391053

Likes: 0  Dislikes: 0
mostcheats43 : It's not hard, just time consuming.

rcarter2 : I can't believe how quickly we hit the 10,000 mark, I'm just glad I didn't make the reward even higher at like 25,000 because we're definitely going to hit that and I would definitely be broke after this competition if I made a higher reward lol.

This was a great idea though, I'm glad I made this competition and offered a huge reward because it resulted into a lot of content for Vizzed.

Also, just make sure you don't fall victim to this rule:
"-If more than 75% of your tagged characters are in games where others have tagged the same characters, than you are not eligible for the cash prizes "

I didn't check your submissions but just reminding you about the rule.

madison : Also reminding you of the rule as well (refer to what I said to rcarter2).

mourinhosgum : It's too late to add this rule in now but I probably should've made it so you can only get up to 10 points per a game. On the other hand, we probably wouldn't have as much work done so maybe it's a good thing I didn't do that.
mostcheats43 : It's not hard, just time consuming.

rcarter2 : I can't believe how quickly we hit the 10,000 mark, I'm just glad I didn't make the reward even higher at like 25,000 because we're definitely going to hit that and I would definitely be broke after this competition if I made a higher reward lol.

This was a great idea though, I'm glad I made this competition and offered a huge reward because it resulted into a lot of content for Vizzed.

Also, just make sure you don't fall victim to this rule:
"-If more than 75% of your tagged characters are in games where others have tagged the same characters, than you are not eligible for the cash prizes "

I didn't check your submissions but just reminding you about the rule.

madison : Also reminding you of the rule as well (refer to what I said to rcarter2).

mourinhosgum : It's too late to add this rule in now but I probably should've made it so you can only get up to 10 points per a game. On the other hand, we probably wouldn't have as much work done so maybe it's a good thing I didn't do that.
The Owner
Owner, Developer, Advertiser, etc
Founder, Mod, Investor


Affected by 'Laziness Syndrome'

Registered: 12-06-04
Location: Wisconsin
Last Post: 48 days
Last Active: 4 min.

07-14-14 08:40 PM
mourinhosgum is Offline
| ID: 1050156 | 96 Words

mourinhosgum
Level: 92


POSTS: 2132/2355
POST EXP: 72922
LVL EXP: 7578722
CP: 2754.0
VIZ: 7839

Likes: 0  Dislikes: 0
Davideo7 : I think we all did a silent truce rule because of it. I never touched any game anyone has done and same with the others i think. And since most of our points come from the yugioh games i never touched one someone else has. The top 3 have 10 000 points alone.
Also, i like to think of this as Doing work for the site and not like a comptetion. We're just getting paid like a real job for this. Much faster way to get work done on the site when you offer $425
Davideo7 : I think we all did a silent truce rule because of it. I never touched any game anyone has done and same with the others i think. And since most of our points come from the yugioh games i never touched one someone else has. The top 3 have 10 000 points alone.
Also, i like to think of this as Doing work for the site and not like a comptetion. We're just getting paid like a real job for this. Much faster way to get work done on the site when you offer $425
Perma Banned
I'll grapple down that god of fear and throw him into hell's fire


Affected by 'Laziness Syndrome'

Registered: 05-25-12
Location: canada
Last Post: 3381 days
Last Active: 3376 days

07-14-14 09:15 PM
madison is Offline
| ID: 1050180 | 85 Words

madison
Level: 38

POSTS: 235/296
POST EXP: 15975
LVL EXP: 358074
CP: 5289.9
VIZ: 256023

Likes: 1  Dislikes: 0
Once the rule was in place, I tried not to tag any screenshots that others have already done, but racarter on a few occasions kept coming to the game at the same time I was playing it, and I know he tagged a few that I already did.

mourinhosgum : Just a brief glance at rcarter's screenies and I counted roughly 2k Yu-Gi-Oh cards. If nothing else, David will have a fairly comprehensive database of Yu-Gi-Oh cards by the end of this, hehe. . . D:

Once the rule was in place, I tried not to tag any screenshots that others have already done, but racarter on a few occasions kept coming to the game at the same time I was playing it, and I know he tagged a few that I already did.

mourinhosgum : Just a brief glance at rcarter's screenies and I counted roughly 2k Yu-Gi-Oh cards. If nothing else, David will have a fairly comprehensive database of Yu-Gi-Oh cards by the end of this, hehe. . . D:

Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 11-26-10
Last Post: 3301 days
Last Active: 1921 days

Post Rating: 1   Liked By: mourinhosgum,

07-14-14 09:17 PM
mourinhosgum is Offline
| ID: 1050181 | 49 Words

mourinhosgum
Level: 92


POSTS: 2133/2355
POST EXP: 72922
LVL EXP: 7578722
CP: 2754.0
VIZ: 7839

Likes: 0  Dislikes: 0
madison : Why did tyranit decide to bring pokemon and yugioh into this. Also even though i only did a bit of it he did steal sacred cards from me. And i have tried to do the same to him with some fighting games

tyranit : This could've all been avoided.lol
madison : Why did tyranit decide to bring pokemon and yugioh into this. Also even though i only did a bit of it he did steal sacred cards from me. And i have tried to do the same to him with some fighting games

tyranit : This could've all been avoided.lol
Perma Banned
I'll grapple down that god of fear and throw him into hell's fire


Affected by 'Laziness Syndrome'

Registered: 05-25-12
Location: canada
Last Post: 3381 days
Last Active: 3376 days

07-14-14 09:22 PM
Davideo7 is Online
| ID: 1050185 | 95 Words

Davideo7
Level: 351


POSTS: 32520/45323
POST EXP: 3473262
LVL EXP: 814434609
CP: 191426.8
VIZ: 122391053

Likes: 0  Dislikes: 0
mourinhosgum : That's great to hear. That's pretty much what this has become, you guys doing work for the site for money. And like I already said, it's money well spent because this has resulted into a ton of submitted screenshots, characters, etc. Now I'll just have to make sure that next month's competition has a big prize like this so that I can get tons more work done for the site

madison : And here I thought it was going to be the Pokemon games that users would score the most points off of lol.
mourinhosgum : That's great to hear. That's pretty much what this has become, you guys doing work for the site for money. And like I already said, it's money well spent because this has resulted into a ton of submitted screenshots, characters, etc. Now I'll just have to make sure that next month's competition has a big prize like this so that I can get tons more work done for the site

madison : And here I thought it was going to be the Pokemon games that users would score the most points off of lol.
The Owner
Owner, Developer, Advertiser, etc
Founder, Mod, Investor


Affected by 'Laziness Syndrome'

Registered: 12-06-04
Location: Wisconsin
Last Post: 48 days
Last Active: 4 min.

07-14-14 09:27 PM
madison is Offline
| ID: 1050193 | 38 Words

madison
Level: 38

POSTS: 236/296
POST EXP: 15975
LVL EXP: 358074
CP: 5289.9
VIZ: 256023

Likes: 0  Dislikes: 0
mourinhosgum : Pokemon isn't too bad because you actually have to play the game to see all the different Pokemon. Unlike Yu-Gi-Oh, where I haven't played a single match, and have several hundred cards by putting stupid passwords in.
mourinhosgum : Pokemon isn't too bad because you actually have to play the game to see all the different Pokemon. Unlike Yu-Gi-Oh, where I haven't played a single match, and have several hundred cards by putting stupid passwords in.
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 11-26-10
Last Post: 3301 days
Last Active: 1921 days

07-14-14 09:34 PM
mourinhosgum is Offline
| ID: 1050199 | 116 Words

mourinhosgum
Level: 92


POSTS: 2134/2355
POST EXP: 72922
LVL EXP: 7578722
CP: 2754.0
VIZ: 7839

Likes: 0  Dislikes: 0
Davideo7 : You may want to watch how much money your putting up for grabs. This competition has a max of $425 and a little while ago you were selling games for tax time... Also, this has made me learn a bit about different games. Like how koopa troopas are the koopas that are just walking around. I always thought they were just koopas. And lots of different kirby enemies. Like the awesome ghost with sunglasses on in kirbys dream land.

madison : i've actually been doing some pretty sweet pokemon things cause of this. I solo'ed the 8 gyms in ruby with just blaziken and HM slaves. and am using only a nidoking and charizard in Yellow

Davideo7 : You may want to watch how much money your putting up for grabs. This competition has a max of $425 and a little while ago you were selling games for tax time... Also, this has made me learn a bit about different games. Like how koopa troopas are the koopas that are just walking around. I always thought they were just koopas. And lots of different kirby enemies. Like the awesome ghost with sunglasses on in kirbys dream land.

madison : i've actually been doing some pretty sweet pokemon things cause of this. I solo'ed the 8 gyms in ruby with just blaziken and HM slaves. and am using only a nidoking and charizard in Yellow

Perma Banned
I'll grapple down that god of fear and throw him into hell's fire


Affected by 'Laziness Syndrome'

Registered: 05-25-12
Location: canada
Last Post: 3381 days
Last Active: 3376 days

07-14-14 09:42 PM
Davideo7 is Online
| ID: 1050206 | 228 Words

Davideo7
Level: 351


POSTS: 32523/45323
POST EXP: 3473262
LVL EXP: 814434609
CP: 191426.8
VIZ: 122391053

Likes: 0  Dislikes: 0
madison : That's a good point. Of course, if someone really wanted to, they could find a way to alter their Pokemon save file or download a compatible one online with a full Pokedex and that wouldn't be against the rules.

mourinhosgum : To be honest, I wasn't so sure we'd hit the 10,000 mark, plus I had planned on being a bigger threat and possibly claiming one of the top 3 spots just so I could save myself some money lol but I wont be doing that now since the top spots in this competition are just way out of reach for me.

Yeah $425 is a ton of money but thankfully I've had a lot of donations lately. I wont be investing this much into next month's competition, it'll probably just be a regular MEGA competition where 1st gets $50 and 2nd gets $25.

Early on I was competing in this competition and I still sorta am (but not for a top 5 spot) and I've been having a lot of fun doing so. It's fun to get to know these various game characters a little bit better by finding good screenshots to take of them, finding games that they are in, etc. These game characters are a big part of retro gaming so it's great that they're getting recognition because of these new features and this competition.
madison : That's a good point. Of course, if someone really wanted to, they could find a way to alter their Pokemon save file or download a compatible one online with a full Pokedex and that wouldn't be against the rules.

mourinhosgum : To be honest, I wasn't so sure we'd hit the 10,000 mark, plus I had planned on being a bigger threat and possibly claiming one of the top 3 spots just so I could save myself some money lol but I wont be doing that now since the top spots in this competition are just way out of reach for me.

Yeah $425 is a ton of money but thankfully I've had a lot of donations lately. I wont be investing this much into next month's competition, it'll probably just be a regular MEGA competition where 1st gets $50 and 2nd gets $25.

Early on I was competing in this competition and I still sorta am (but not for a top 5 spot) and I've been having a lot of fun doing so. It's fun to get to know these various game characters a little bit better by finding good screenshots to take of them, finding games that they are in, etc. These game characters are a big part of retro gaming so it's great that they're getting recognition because of these new features and this competition.
The Owner
Owner, Developer, Advertiser, etc
Founder, Mod, Investor


Affected by 'Laziness Syndrome'

Registered: 12-06-04
Location: Wisconsin
Last Post: 48 days
Last Active: 4 min.

07-14-14 09:50 PM
madison is Offline
| ID: 1050213 | 16 Words

madison
Level: 38

POSTS: 237/296
POST EXP: 15975
LVL EXP: 358074
CP: 5289.9
VIZ: 256023

Likes: 0  Dislikes: 0
Davideo7 : For reals? I. . . think I need to figure out how to do that.
Davideo7 : For reals? I. . . think I need to figure out how to do that.
Vizzed Elite

Affected by 'Laziness Syndrome'

Registered: 11-26-10
Last Post: 3301 days
Last Active: 1921 days

07-14-14 09:52 PM
mourinhosgum is Offline
| ID: 1050215 | 65 Words

mourinhosgum
Level: 92


POSTS: 2135/2355
POST EXP: 72922
LVL EXP: 7578722
CP: 2754.0
VIZ: 7839

Likes: 0  Dislikes: 0
Davideo7 : I was planning on manipulating the saves or using a gameshark but couldn't figure it out.lol
One series i discovered is world heroes. It's a fighting game that has given me quite a few laughs with the different modes and characters, and i beat or got far in many games i used to play. I beat SMW like 3 times in like 30 minutes each
Davideo7 : I was planning on manipulating the saves or using a gameshark but couldn't figure it out.lol
One series i discovered is world heroes. It's a fighting game that has given me quite a few laughs with the different modes and characters, and i beat or got far in many games i used to play. I beat SMW like 3 times in like 30 minutes each
Perma Banned
I'll grapple down that god of fear and throw him into hell's fire


Affected by 'Laziness Syndrome'

Registered: 05-25-12
Location: canada
Last Post: 3381 days
Last Active: 3376 days

07-14-14 09:57 PM
Davideo7 is Online
| ID: 1050223 | 26 Words

Davideo7
Level: 351


POSTS: 32525/45323
POST EXP: 3473262
LVL EXP: 814434609
CP: 191426.8
VIZ: 122391053

Likes: 0  Dislikes: 0
madison : Or you could find someone on the site who has a full Pokedex of a Pokemon game and have them send it to you
madison : Or you could find someone on the site who has a full Pokedex of a Pokemon game and have them send it to you
The Owner
Owner, Developer, Advertiser, etc
Founder, Mod, Investor


Affected by 'Laziness Syndrome'

Registered: 12-06-04
Location: Wisconsin
Last Post: 48 days
Last Active: 4 min.

Links

Page Comments


This page has no comments

Adblocker detected!

Vizzed.com is very expensive to keep alive! The Ads pay for the servers.

Vizzed has 3 TB worth of games and 1 TB worth of music.  This site is free to use but the ads barely pay for the monthly server fees.  If too many more people use ad block, the site cannot survive.

We prioritize the community over the site profits.  This is why we avoid using annoying (but high paying) ads like most other sites which include popups, obnoxious sounds and animations, malware, and other forms of intrusiveness.  We'll do our part to never resort to these types of ads, please do your part by helping support this site by adding Vizzed.com to your ad blocking whitelist.

×