Topic: Games / GEARS OF WAR 2 is it bad is it good
Cliched premise doesn’t mean bad game.
|
10 hours ago ago
|
Topic: Games / GEARS OF WAR 2 is it bad is it good Cliched premise doesn’t mean bad game. |
|
Oct 26, 2008
|
Topic: Kongregate / Are Kongregates latest games getting worse? Greg is a computer. He’s basically ELIZA modified to use more WoW references. |
|
Oct 25, 2008
|
Topic: Kongregate / Question about revenue payment. The verification period is an extra 30 days before you get your payment. |
|
Sep 23, 2008
|
Topic: Games / Item Guide for Monsters' Den: Book of Dread
It triggers a battle, but you can retreat or die (provided you’re not on Hardcore) and try again, you don’t lose the stone.
The upgraded item is a random unique of the same type as the original item (eg sword, tower shield, leather boots.) The level of the item is changed to the current dungeon level. |
|
Sep 4, 2008
|
Topic: Kongregate / Some notes about dealing with stolen games on Kongregate Yeah, the stolen witchhunts are definitely hurting the reputation of the site amongst developers. I think arcaneCoder’s suggestion is a good one, but I also think its worth attacking the problem from the other direction in trying to reduce the amount of genuinely “stolen” games that are uploaded. The upload process could probably do more to drive home the idea that the games you upload are supposed to be your own work. |
|
Aug 27, 2008
|
Topic: Kongregate / New comment filtering!
Yeah. There’s no need for them at all, and plenty of room for abuse. |
|
Aug 26, 2008
|
Topic: Kongregate / Penny Arcade Expo 2008 I’m not going to make it, sadly. I was looking forward to it but my travel plans have fallen through. Sorry guys, I know I’ve shattered a lot of dreams today. Hopefully you can find a way to have a good time despite this tragedy. |
|
Aug 25, 2008
|
Topic: Kongregate / Ad Revenue? It’s not strictly linear. There are often several factors that go into determining the rate in online advertising, like the country where the impression originates. |
|
Aug 25, 2008
|
Topic: Games / Unresponsive Buttons Make sure you have the newest version of Flash Player. You can always find the most recent player at http://adobe.com/go/getflashplayer You can see what version you currently have installed here: http://kb.adobe.com/selfservice/viewContent.do?... |
|
Aug 25, 2008
|
Topic: Games / Sonny in wrong category? It used to be in Adventure & RPG. I believe its category was changed when it was hacked (with the Michael Jackson image.) I don’t think anyone has cared enough to move it back yet. |
|
Aug 11, 2008
|
Topic: Kongregate / Kongregate at PAX 08 Sure, I’d be keen to meet any fellow Kongregate-type people. Hopefully I can make it there, it’s all a bit last-minute and kind of a logistical nightmare. Shame there’s no Kong booth this year. |
|
Aug 10, 2008
|
Topic: Kongregate / Kongregate at PAX 08 Is there going to be any kind of official Kong presence at PAX this year? |
|
Aug 9, 2008
|
Topic: Kongregate / Upon winning Monthly/Weekly Contest... I never had to do anything like this. Just relax—if they need something from you, I’m sure they’ll ask. |
|
Aug 6, 2008
|
Topic: Kongregate / Exclusive Content is pretty annoying Typically you have a primary sponsor, who pays for your game on the assumption that it will drive traffic to their site. Exclusive content is part of that, because it makes it more likely the user will click through to try out what they’re missing. Sometimes another publisher decides they’d also like the content unlocked, so they pay the developer a smaller fee to get a full version which only works on their site. (provided the agreement with the primary sponsor allows it) Warlords and Monsters’ Den: Book of Dread are good examples: both primary sponsored by Kong with exclusive content, but if you only played them on Armor Games you probably couldn’t tell that. |
|
Aug 6, 2008
|
Topic: Kongregate / Exclusive Content is pretty annoying It’s true that there are some sponsored games with content exclusive to Kongregate. In these cases, other sites (like Armor Games) will often pay the developer for their own site-locked version of the game with the extra content available. Kongregate currently does not do this, which is probably why you’d notice this issue more on Kong than elsewhere. |
|
Jul 19, 2008
|
Topic: Kongregate / Armor Games Exclusivity stuff = BS
You’re lecturing a Flash developer on their business model. arcaneCoder gets it; you do not. Nobody else is talking about retail sales. It’s utterly irrelevant whether you’d pay for the game or not. The fact of the matter is that many of the more popular Flash games would not exist without the promise of sponsorship and the exclusive content that sometimes entails. |
|
Jul 18, 2008
|
Topic: Kongregate / Partial Versions of Games on Kongregate
Contrary to popular belief, developers are actually human. Thus, they require things such as food and shelter. |
|
Jul 7, 2008
|
Topic: Programming / Reuploading Deletes Save file.. This has never been an issue with my games. If you’re maintaining the same filename and not messing about with the code to manage the saved games, I can’t imagine why it would happen. |
|
Jul 1, 2008
|
Topic: Games / A Question About MD:BoD No, you’re still right. They are the campaign item. |
|
Jul 1, 2008
|
Topic: Games / A Question About MD:BoD You use them like a scroll or potion- double click, or drag to portrait/paperdoll. You need to have a stack of nine before it will do anything though. |
|
Jun 27, 2008
|
Topic: Games / sonny miscategorised? I think this must be a carry over from when it was hacked, but I’m not sure why it hasn’t been fixed yet. |
|
Jun 24, 2008
|
Topic: Programming / Duplicating in AS3...
Call slice() without any arguments. |
|
Jun 23, 2008
|
Topic: Programming / This is driving me nuts... (more boolean troubles)
AS2 is weird as hell. Carry on. |
|
Jun 23, 2008
|
Topic: Programming / This is driving me nuts... (more boolean troubles) I’ve never used AS2, but it certainly looks to me like it’s a problem of scope. You’re declaring “attacking” inside the onClipEvent function, which means it’s not going to be accessible outside of that function. Or is AS2 really lax enough to allow this? You might try (modifying Kalinium’s code):
var attacking:Boolean;
onClipEvent(load){
var speed:Number = random(20) + 3;
trace("LOAD speed = "+speed);
_x = 600;
_y = random(400);
attacking = false;
trace("LOAD attacking = "+attacking);
}
onClipEvent(enterFrame) {
trace("EF_T attacking = "+attacking)
if (attacking) {
_x = 0;
} else {
_x -= speed;
}
}
|
|
Jun 16, 2008
|
Topic: Programming / The "this" Keyword An object is an instance of a class. By script they mean a block of code written in ActionScript, yeah. |