Recent posts by Mascimo on Kongregate

Subscribe to Recent posts by Mascimo on Kongregate

avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Flash contest menu

How to disable it on AS3.0?
I mean: context.
I don’t want people going forward and back between my frames.

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with scrolling

I need to make a scrolling background just like the one in Shootorial #2, but I need to change the speed dynamically. Is it possible with another actionscript file for the class?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Knogregate's username

var playerName:String = KongregateAPI.getInstance().user.getName();

Would that work?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Knogregate's username

How do I get the player’s username to use in the game, like in mr. bounce?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Movieclip not playing

That worked… Thanks…

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: General Gaming / Particle Escape

How does page up and down work? Here they don’t.

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: General Gaming / Particle Escape

Do you think it would be nice if I added a tenth second to the precision of the timer?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: General Gaming / Particle Escape

http://www.kongregate.com/games/Mascimo/particle-escape

I need someone capable of completing it, so I know that the highscore API is working.
That means yes, I made a game that I can’t beat.

Anyone up to the challenge?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with anti-cheat code

Thanks everyone.

I used the alt keycode, though Cervello’s Idea is the best. Check out the game now, I revised it, and please check the credits ;)

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with anti-cheat code

That sucks.

skyboy said;
uhh… the alt key doesn’t do anything unless you program an action for when it’s pressed?

I couldn’t program an action for alt because I haven’t find it’s keycode in any list. Isn’t the alt key reserved to the compiler, for security matters?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with anti-cheat code

Stop what?
What are you guys talking about?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with anti-cheat code

Using alt you can cheat in ths game:
http://www.kongregate.com/games/Mascimo/particle-escape

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with anti-cheat code

What about the alt key?

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with anti-cheat code

And, sorry, it is AS 2.0.

 
avatar for Mascimo Mascimo 15 posts
Flag Post

Topic: Game Programming / Help with anti-cheat code

http://www.kongregate.com/games/Mascimo/precision-click

I had it with a highscore board, but I had to delete it because I found out that you could hack it with the tab key.

The game has several frames with the stop(); action on them. I tried using the following code:

onEnterFrame = function () {
if (Key.isDown(“<tab>”)) {
gotoAndStop(3);
}
};

But apparently, it made the stop() action invalid, and the frame goes right away, doesn’t stop.

Any ideas?