Jump to content


Sebixxx

Member Since 05 Dec 2011
Offline Last Active May 04 2013 03:37 AM

Posts I've Made

In Topic: GameMaker Server

09 February 2013 - 09:58 PM

Ah now it's working, didn't thought this extension is that easy to use.
I am going to build a nice little multiplayer game now, but the only thing I am afraid of is, if game maker server will be down somewhen in the future.
It will probably happen, nothing will stay forever and the games they're built with game maker server won't work anymore then.

Is there a way to make an own server with game maker server?

In Topic: GameMaker Server

08 February 2013 - 12:31 AM

Just wanted to test it out right now, but for some reason the examples don't work correctly.
The login screens just freeze as soon as I type a Name in and click "login".

Edit:
Built some examples by myself with gamemakerserver, also tried to launch everything as an administrator but
the problem is still occurring.

In Topic: Go to the nearest object with same variable

08 August 2012 - 11:47 AM

it gave you errors because you have to surround instance_nearest with (), but it would have resulted in the same as your first code, so don't mind.
this should work for finding the id:
var nid;
if instance_exists(vsl_visuals_red){
nid=instance_furthest(x,y,vsl_visuals_red);
with vsl_visuals_red
if check==other.check && point_distance(other.x,other.y,nid.x,nid.y)>point_distance(other.x,other.y,x,y)
nid=id;
if nid.check!=check
nid=noone
}else
nid=noone;


Perfect!
Works just perfect!
Thanks :)