Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack/commands
In directory sc8-pr-cvs1:/tmp/cvs-serv3009
Added Files:
travel.py
Log Message:
travel command
--- NEW FILE: travel.py ---
#===============================================================#
# ) (\_ | WOLFPACK 13.0.0 Scripts #
# (( _/{ "-; | Created by: codex #
# )).-' {{ ;'` | Revised by: #
# ( ( ;._ \\ ctr | Last Modification: Created #
#===============================================================#
# travel Command #
#===============================================================#
import wolfpack
import string
from moongate import *
from wolfpack.consts import *
def travel( socket, command, args ):
char = socket.player
sendGump( char, 0 )
return OK
def onLoad():
wolfpack.registercommand( "travel", travel )
|