MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | inherit "std/room"; |
| 2 | #include <properties.h> |
| 3 | #include <moving.h> |
| 4 | #include <wizlevels.h> |
| 5 | |
| 6 | void create() |
| 7 | { |
| 8 | ::create(); |
| 9 | SetProp(P_LIGHT, 1 ); |
| 10 | SetProp(P_INT_SHORT, "Bei den inaktiven Spielern :)" ); |
| 11 | SetProp(P_INT_LONG, |
| 12 | "Hier ist absolut nichts zu sehen, die, die sich hier normalerweise\n" |
| 13 | +"aufhalten, sind eh noninteractive...\n"); |
| 14 | AddCmd( "", "onlywelt", 1 ); |
| 15 | } |
| 16 | |
| 17 | int onlywelt( string s ) { |
| 18 | if( query_verb()=="welt" ) { |
| 19 | this_player()->move("/gilden/abenteurer", M_TPORT); |
| 20 | return 1; |
| 21 | } |
| 22 | if( IS_LEARNER(this_player()) ) return 0; |
| 23 | write( |
| 24 | "Wenn Du das magische Kommando 'welt' gibst, wirst Du wieder in Deine Welt\n" |
| 25 | +"zurueckversetzt werden.\n" |
| 26 | ); |
| 27 | return 1; |
| 28 | } |