Hi all,

I´ve just start to use the multiplayer in Gamestudio and i´m having some probs.

My entites move when i click them with the mouse. In my game the server can walk without problems...but in the client either not recognize the entites .. if i click on then they have no answer.

My Action
quote:


action unit1_action
{
my.enable_click = on;
my.enable_entity = on;
my.enable_touch = on;
my.event = move_unit;
my.enable_scan = on;
my.pan = 270;
}

My Move_Unit (works in the server)
quote:

function move_unit()
{
exclusive_global;
var go_pos.x;
var go_pos.y;

if (event_type == event_touch)
{
.
.
.
}

What i have to do for the client identify that i click on a entity????

Tks


Giuliano B. Schiavon ====================