MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | SYNOPSIS: |
| 2 | void move_object(mixed item, mixed dest) |
| 3 | |
| 4 | item->move(object dest, string methods) |
| 5 | |
| 6 | DESCRIPTION: |
| 7 | The item, which can be a object_name or an object, is moved into |
| 8 | it's new environment dest, which can also be object_name or an |
| 9 | object. In native mode, the only object that can be moved |
| 10 | with move_object() is the calling object itself. This function |
| 11 | is only used to implement the lfun move(). |
| 12 | |
| 13 | Use the lfun move() instead by inheriting standard objects. |
| 14 | move() must be called in the object to be moved. This gives |
| 15 | the moved object full control over its movement. |
| 16 | |
| 17 | SEE ALSO: |
| 18 | move(L), remove(L), init(L), transfer(E), native(C) |