Comment scripts.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@13729 282e977c-c81d-0410-88c4-b93c2d0d6712master
parent
11809e6608
commit
3ff22a5704
|
@ -1,4 +1,23 @@
|
||||||
#! /usr/bin/python
|
#! /usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# This script generates the various files for a guild, and installs them
|
||||||
|
# to the correct location.
|
||||||
|
# It should be launched with templates/guilds as working directory.
|
||||||
|
#
|
||||||
|
# Files that will be copied are specified in 'filelist.py'.
|
||||||
|
#
|
||||||
|
# Parameters are in the form:
|
||||||
|
# name region directory entrance x y storage x y
|
||||||
|
# with:
|
||||||
|
# - name: guild name, like PoisonedDagger; must not contain spaces
|
||||||
|
# - region: what region to give the maps of the guild (eg "scorn")
|
||||||
|
# - directory: where to put maps for this guild, relative to the maps's root directory
|
||||||
|
# - entrance: map with the entrance to the guild, relative to maps's root directory
|
||||||
|
# - x and y: coordinates in 'entrance' with the guild entrance
|
||||||
|
# - storage: map with the storage room's entrance, can be 'same' to be equal to 'entrance'
|
||||||
|
# - x and y: coordinates in 'storage' for the storage room's entrance
|
||||||
|
|
||||||
import os, sys
|
import os, sys
|
||||||
from filelist import filelist
|
from filelist import filelist
|
||||||
ToGuild=sys.argv[1]
|
ToGuild=sys.argv[1]
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# This Python script installs all guilds to their location.
|
||||||
import os
|
import os
|
||||||
t=open('GuildLocations')
|
t=open('GuildLocations')
|
||||||
a=t.read()
|
a=t.read()
|
||||||
|
|
Loading…
Reference in New Issue