Forums

Recent Posts by Enrai

Subscribe to Recent Posts by Enrai 321319 posts found

Pages: 1 2 3 4 5 6 7 8 9 10 11 ... 12853

22 minutes ago ago

Yellgrl_av Gryzor 42 posts

Topic: General Chat / Females of Human Species vs Females of other Mammals

Ah, the good ol' sexist "sammich" shtick. No matter how many times I hear it, it
never gets.... funny.

 

33 minutes ago ago

Spectre Haloman 029 2 posts

Topic: Suggestion Box / DDS reader

Hey ppl!
I have had many times when graphics were tight, and DDS files had what I needed.
Just wondering if there is a way there could be some sort of plug-in or
extension for 7.0 and up that could do this. Any ideas on how this could be
done?

 

1 hour ago ago

Video-games darzoz 3767 posts

Topic: General Chat / PanZer DraGooN

Never heard of it.

 

1 hour ago ago

Mtav MT 4076 posts

Topic: General Chat / GMS Competition 01 - RTS ($200 1st place, $100 2nd place, $50 3rd place)

Just thought of an epic RTS idea
several months too late though
You will be holding another comp i take it?

 

1 hour ago ago

Video-games darzoz 3767 posts

Topic: General Chat / Margay-furry, drawing.

QuoteI'm not a fan of anthropomorphic characters so I really can't say
much.
I've liked anthropomorphic characters since I was about 4, I just
never knew there was a community and fandom for it until about 6 days ago.

 

2 hours ago ago

Video-games darzoz 3767 posts

Topic: General Chat / Mafia: Day one! (Originally Mafia Signups)

I'm just being lazy. I think the reason MY said he was dead is because only one
person voted and that got was for MY.

 

2 hours ago ago

Logo_copy Piefaceclown Productions 1941 posts

Topic: General Chat / The Pwnage Game

Restart?

Put that in your oven and bake it (o_0)

 

2 hours ago ago

Logo_copy Piefaceclown Productions 1941 posts

Topic: General Chat / Frenchie!

You must be really mad, your spelling is like a man possessed (really bad)
Well, all I can say is: Life sucks, it's not designed to be fair or even to make
sense all the time.
Why don't you ask for a redo-review? If you explain his mistakes and stuff he
could fix them and then you could both be happy.

 

2 hours ago ago

Logo_copy Piefaceclown Productions 1941 posts

Topic: General Chat / Females of Human Species vs Females of other Mammals

QuoteIf only we could have it like it was in 1950.

Oh yes, good times for all [/sarcasm]
I believe that everyone should be treated equally, that means equal punishments
for the same offense regardless of gender, and this applies to more than just
criminal offenses. For example, it's ok for a women to criticize a mans
appearance or behavior in public. But if a man does that to a women, it's
unacceptable. Even though both are the same thing, and equally bad, the gender
decides what happens.

 

2 hours ago ago

Richard FGS_HURRICANE 887 posts

Topic: Game Development Issues / Game Speed

@dragonwalker it doesnt lag, it does the opposite
@deathzero yes

 

2 hours ago ago

Logo_copy Piefaceclown Productions 1941 posts

Topic: General Chat / Save our Planet

I think (not trying to start a debate) that the "global warming" being sold to
the world is untrue.
But I do believe that one day we may run out of resources. And we should
definitely reduce, reuse, and recycle.
But since I don't sign up for random newsletters from anonymous people I'll have
to pass, good luck with your mission tho.

 

3 hours ago ago

M MechaGames 1035 posts

Topic: General Chat / Was there 6 stars to rate from?

I remember 6 star ratings smile

 

3 hours ago ago

Nopicture_small Divitto 7 posts

Topic: Game Development Issues / (solved) keeping score on pong

o ok i got it now thank you guys so much for your help.

 

3 hours ago ago

M MechaGames 1035 posts

Topic: General Chat / Browser based MMO that doesn't lag on this rubbish pc i'm using

Well then you probably can't play anything decent.

 

3 hours ago ago

Action_hero Timthetoolman 26 posts

Topic: Game Development Issues / Where to begin with Fog of War System?

Ello again, here with another tricky question. I've decided its about time I
implemented a fog of war into the RTS I've been building. The only problem? I
can't think of a feasible way using GML code to make a good fog of war that
won't lag the game out horridly. I don't know where to begin with this one. If
somebody has had some experience with this particular setup, could I possibly
get a tip or two on how to do something like this?

 

3 hours ago ago

Kittys1av Martho 694 posts

Topic: Game Development Issues / (solved) keeping score on pong

if your drawing the score with the draw score action that will not work you must
use a draw variable action and select the p1score and p2score variables

 

3 hours ago ago

B Shattergolem 1281 posts

Topic: General Chat / Was there 6 stars to rate from?

666!

 

3 hours ago ago

B Shattergolem 1281 posts

Topic: General Chat / Browser based MMO that doesn't lag on this rubbish pc i'm using

QuoteWell I don't know about the PC you're using.
Let's put it this way, GM7 exes do not run, Runescape Lags too much, and to top
it all off, it lags even when I'm on websites that don't have advertisements.

 

3 hours ago ago

Nopicture_small Divitto 7 posts

Topic: Game Development Issues / (solved) keeping score on pong

ok... now im not getting any error messages but its not adding to the score. how
do i link the p1score variables to the score that's displayed on the screen. i
have the score set up in the draw section its set in both players just in
different places. sorry if this is a dumb question im extremely new to this
program

 

3 hours ago ago

020 DeathandGrim2 2542 posts

Topic: General Chat / Was there 6 stars to rate from?

Yes there used to be 6 stars a rather odd but unique number.
The 5 star change reaction was mixed though

 

3 hours ago ago

Project2 Choclatesailor 87 posts

Topic: General Chat / Was there 6 stars to rate from?

Ok, now I have been with Yoyo since it came out(its transition from
GameMaker.nl), and I can't remember too well, but was the rate limit 6 stars
back then. I probably would remember this, but I took a long(2 year) break from
Yoyo, which is when I ditched my old account for this one. I see alot of
comments(usually in the first-ten pages) saying things like "Great! 6/6" or
"That sucked, 1/6"...Can somebody who remembers answer that question?

 

3 hours ago ago

Pic2 Jacob the Snacob 307 posts

Topic: Game Development Issues / (solved) keeping score on pong

[ball step]
if (ball.x<0)
{
p2score += 1
//destroy ball or put ball in middle or whatever*
}
if (ball.x>room_width)
{
p1score += 1
//destroy ball or put ball in middle or whatever*
}
To have the best effects, put the origin of the ball in the center of the ball.
*I don't know how you are doing that part.
[ball create]
p1score = 0
p2score = 0
What you did is create a variable in each player and tried to access another
variable with the same name from a different object. Another problem is you set
the variables to 0 in the step event. This would constantly set them to 0 after
you added anythin to them.

 

4 hours ago ago

M MechaGames 1035 posts

Topic: General Chat / Save our Planet

Meh, I'll probably die before anything serious happens. If not, oh well, suicide
is an option.

 

4 hours ago ago

M MechaGames 1035 posts

Topic: General Chat / Browser based MMO that doesn't lag on this rubbish pc i'm using

Well I don't know about the PC you're using.

 

4 hours ago ago

Nopicture_small Divitto 7 posts

Topic: Game Development Issues / (solved) keeping score on pong

i used your code in the ball step event i set variable p1score = 0 in the step
event of my player 1 but when i score it sends me an error saying that p1score
is a unknown variable and the same vise versa for player 2 what did i do wrong?

Next page

Pages: 1 2 3 4 5 6 7 8 9 10 11 ... 12853

(Registered users only)