ID:175555
 
I know its possible i just dont know how to.

What i have is this:

var/mob/Player/S = new()
S.loc=locate(1,9,1)
src=S

Whitch doesnt look to good. But its all i can think of.
Wanabe wrote:
I know its possible i just dont know how to.

What i have is this:

var/mob/Player/S = new()
S.loc=locate(1,9,1)
src=S

Whitch doesnt look to good. But its all i can think of.

There are two ways to do it.

S.client = src.client

or

S.key = src.key
In response to Shadowdarke
Don't forget src.client.mob = S