[wpdev-commits] xmlscripts/scripts/wolfpack/commands travel.py,NONE,1.1
Brought to you by:
rip,
thiagocorrea
|
From: <co...@us...> - 2003-10-01 10:11:17
|
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 )
|