How would I use either of these two to make it to where I can drag mobs with my mouse and have it constantly move the mob while I'm dragging and when the mouse enters a new turf?
mob MouseDrag(atom/M,turf/Y,turf/T) if(isturf(Y) && isturf(T)) // incase of clashes with statpanels if(!Y.density) // dont allow them to be fighting to get into a turf if(!T.density) if (usr == src) // checks the owner of the mob is the client walk_to(src,T,0,2) .=..()
//All credit for this snipit goes to Maz for creating it.
is this what you looking for???