ID:269138
 
Ok, I need this piece of code to be edited:

 turf/NextScreen
density = 1
Click()
src.loc = (6,8,3)


What I need is when the player clciks on the the tile on the starting screen, they are teleported to (6,8,3) Which is another segment of the login screen (It tells what all for the user to do) The current location of the player is (6,8,2) Thank you for your help...

(Here are the current errors:
REMIX.dm:76:error::invalid expression
REMIX.dm:76:error:src.loc:cannot change constant value)
Change that to usr.loc = locate(6,8,3)
In response to N1ghtW1ng
When i do it states:

'REMIX.dm:76:error::invalid expression'
In response to Lejendary Artz
I think your indentations are messed up. It should be:

turf
blah
density = 1
Click()
//stuff here


Note: I used spaces.
In response to N1ghtW1ng
Ok, Ill try that
In response to N1ghtW1ng
REMIX.dm:77:error:usr.loc:undefined var
In response to Lejendary Artz
1) Use edit button

2) Show what you have.
In response to N1ghtW1ng
turf
NextScreen
density = 1
Click()
src.loc = (6,8,3)


I have used usr.loc and src.loc, still dosent work the error is:
(REMIX.dm:77:error:src.loc:undefined var)
In response to Lejendary Artz
Lejendary Artz wrote:
turf
> NextScreen
> density = 1
> Click()
> src.loc = (6,8,3)

I have used usr.loc and src.loc, still dosent work the error is:
(REMIX.dm:77:error:src.loc:undefined var)

Use this
turf
NextScreen
density=1
Click()
usr.loc=locate(6,8,3)
/*
note:
The reason to use usr. instead of src.
is because the src. is the turf itself.
If it was src. instead of the usr.
the turf that you clicked would be moved
to the (6,8,3) instead of the person who
clicked it.
*/
In response to Lejendary Artz
You didn't listen to anything I said.

It should be:

turf
NextScreen
density = 1
Click()
usr.loc = locate(6,8,3)
In response to ElderKain
Ok, that worked, thanks.