ID:178273
 
Well its been about 6 months and now i am back coding.
I am wondering how would i make it so when you buy a boat you are able to only go on the water with it.
I can do that but they can alos go onto the mountains as well. so i am wondering how i could have it just go through water and nothing else.
Thanks in advance



~Richter
just have a var for all turfs, water. Set it to 1 for water, and 0 for land. With the Enter() proc, check to see if usr.Boat == src.water If so, ..() .
Within the boats Move() proc, check the type of 'NewLoc'. If it is not water, return 0.

flick()