Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ SMAUG
➜ Compiling the server
➜ Shutdown: unable to open area list
Shutdown: unable to open area list
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Pages: 1
2
3
Posted by
| Kingsmill
USA (78 posts) Bio
|
Date
| Reply #30 on Fri 21 Jul 2006 01:22 AM (UTC) |
Message
| I am now using smaug 1.7 by the way... |
T.A.N.S.T.A.F.L.
There Aint No Such Thing As Free Lunch,
From the moon is a harsh mistress. | Top |
|
Posted by
| Zeno
USA (2,871 posts) Bio
|
Date
| Reply #31 on Fri 21 Jul 2006 01:26 AM (UTC) |
Message
|
Quote: area.lst: No such file or directory
Make sure you're running it correctly. |
Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org | Top |
|
Posted by
| Nick Gammon
Australia (23,140 posts) Bio
Forum Administrator |
Date
| Reply #32 on Fri 21 Jul 2006 01:47 AM (UTC) |
Message
| Did you do this:
cd ../area
../src/smaug
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
Posted by
| Kingsmill
USA (78 posts) Bio
|
Date
| Reply #33 on Fri 21 Jul 2006 04:49 AM (UTC) |
Message
| Ok I just got it to work but even more errors pop up, players can connect but they can't do anything but socials, and the errors are not on the command prompt screen. However a couple errors at the bottom are available:
chunk 1:
Loading clans
Loading clans...
vampire.gui
Cannot open clan vault
druid.gui
Cannot open clan vault
warrior.gui
Cannot open clan vault
augurer.gui
Cannot open clan vault
thief.gui
Cannot open clan vault
cleric.gui
Cannot open clan vault
mage.gui
Cannot open clan vault
ranger.gui
Cannot open clan vault
$
chunk 2:
Thu Jul 20 19:15:39 2006 :: [*****] FILE: gallery.are LINE: 4020
Thu Jul 20 19:15:39 2006 :: [*****] BUG: load_specials: 'M': vnum 24896.
Thu Jul 20 19:15:39 2006 :: [*****] FILE: gallery.are LINE: 4021
Thu Jul 20 19:15:39 2006 :: [*****] BUG: Error locating function spec_guard in s
ymbol table.
Thu Jul 20 19:15:39 2006 :: [*****] FILE: gallery.are LINE: 4021
Thu Jul 20 19:15:39 2006 :: [*****] BUG: load_specials: 'M': vnum 24897.
Thu Jul 20 19:15:39 2006 :: [*****] FILE: gallery.are LINE: 4022
Thu Jul 20 19:15:39 2006 :: [*****] BUG: Error locating function spec_guard in s
ymbol table.
Thu Jul 20 19:15:39 2006 :: [*****] FILE: gallery.are LINE: 4022
Thu Jul 20 19:15:39 2006 :: [*****] BUG: load_specials: 'M': vnum 24898.
Thu Jul 20 19:15:40 2006 :: [*****] FILE: gallery.are LINE: 4023
Thu Jul 20 19:15:40 2006 :: [*****] BUG: Error locating function spec_guard in s
ymbol table.
Thu Jul 20 19:15:40 2006 :: [*****] FILE: gallery.are LINE: 4023
Thu Jul 20 19:15:40 2006 :: [*****] BUG: load_specials: 'M': vnum 24899.
gallery.are : Rooms: 24800 - 24899 Objs: 24800 - 24899 Mobs: 24800 - 24899 |
T.A.N.S.T.A.F.L.
There Aint No Such Thing As Free Lunch,
From the moon is a harsh mistress. | Top |
|
Posted by
| Nick Gammon
Australia (23,140 posts) Bio
Forum Administrator |
Date
| Reply #34 on Fri 21 Jul 2006 05:19 AM (UTC) |
Message
| Are you running this from "within" the Cygwin environment? I get the impression you are not, from this line:
I:\smaug\smaug\dist\area>smaug
The latest SmaugFUSS should compile and run "out of the box" - you shouldn't be having all these problems.
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
Posted by
| Nick Gammon
Australia (23,140 posts) Bio
Forum Administrator |
Date
| Reply #35 on Fri 21 Jul 2006 05:44 AM (UTC) |
Message
| The whole process should take about 5 minutes, from unpacking the downloaded file to having the MUD up and running. Let me run through it. I will delete my old SmaugFUSS directory and do one from scratch.
First, make sure you are in the Cygwin command environment (not the Windows DOS prompt). You should have got a Cygwin shortcut when you installed Cygwin.
Try typing "whoami". You should see something like this:
$ whoami
Nick
Not this:
C:\>whoami
Nick
If you see the C: prompt (or the I: prompt, or similar) you are in the Windows environment, not the Cygwin environment.
Now follow this through, what you type is in bold:
Nick@nick ~
$ tar xzf smaug17fuss.tgz
Nick@nick ~
$ cd SmaugFUSS/src
Nick@nick ~/SmaugFUSS/src
$ vi Makefile
You are now editing the Makefile. Use vi (or some other editor) to change two lines:
CC = gcc
#PROF = -p
#Uncomment to compile in Cygwin
#CYGWIN = -DCYGWIN
#Uncomment the line below if you are getting undefined references to dlsym, dlop
en, and dlclose.
#Comment it out if you get errors about ldl not being found.
NEED_DL = -ldl
You have to take one comment out and put one in. It should now look like this:
CC = gcc
#PROF = -p
#Uncomment to compile in Cygwin
CYGWIN = -DCYGWIN
#Uncomment the line below if you are getting undefined references to dlsym, dlop
en, and dlclose.
#Comment it out if you get errors about ldl not being found.
#NEED_DL = -ldl
If you are using vi type ZZ to save the Makefile. Otherwise use Notepad or something similar to make those changes.
Now compile it:
$ make
make -s smaug
Compiling o/imc.o....
Compiling o/act_comm.o....
Compiling o/act_info.o....
Compiling o/act_move.o....
Compiling o/act_obj.o....
Compiling o/act_wiz.o....
Compiling o/ban.o....
Compiling o/boards.o....
Compiling o/build.o....
Compiling o/clans.o....
Compiling o/color.o....
Compiling o/comm.o....
Compiling o/comments.o....
Compiling o/const.o....
Compiling o/db.o....
Compiling o/deity.o....
Compiling o/fight.o....
Compiling o/handler.o....
Compiling o/hashstr.o....
Compiling o/hotboot.o....
Compiling o/imm_host.o....
Compiling o/interp.o....
Compiling o/magic.o....
Compiling o/makeobjs.o....
Compiling o/mapout.o....
Compiling o/mccp.o....
Compiling o/misc.o....
Compiling o/mpxset.o....
Compiling o/mud_comm.o....
Compiling o/mud_prog.o....
Compiling o/planes.o....
Compiling o/player.o....
Compiling o/polymorph.o....
Compiling o/reset.o....
Compiling o/save.o....
Compiling o/services.o....
Compiling o/sha256.o....
Compiling o/shops.o....
Compiling o/skills.o....
Compiling o/special.o....
Compiling o/tables.o....
Compiling o/track.o....
Compiling o/update.o....
Generating dependency file ...
Done compiling mud.
Nick@nick ~/SmaugFUSS/src
$
Now run it:
Nick@nick ~/SmaugFUSS/src
$ cd ../area
Nick@nick ~/SmaugFUSS/area
$ ../src/smaug
Fri Jul 21 15:37:45 2006 :: Booting Database
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Fri Jul 21 15:37:45 2006 :: [*****] BOOT: ---------------------[ Boot Log ]-----
---------------
Fri Jul 21 15:37:45 2006 :: Initializing libdl support...
Fri Jul 21 15:37:45 2006 :: Loading commands...
Fri Jul 21 15:37:45 2006 :: Loading spec_funs...
Fri Jul 21 15:37:45 2006 :: Loading sysdata configuration...
Fri Jul 21 15:37:45 2006 :: Loading socials
Fri Jul 21 15:37:46 2006 :: Loading skill table
Fri Jul 21 15:37:46 2006 :: [*****] BUG: Fread_skill: no match: Author
Fri Jul 21 15:37:46 2006 :: [*****] BUG: Fread_skill: no match: ~
Fri Jul 21 15:37:46 2006 :: [*****] BUG: Fread_skill: no match: ~
Fri Jul 21 15:37:46 2006 :: [*****] BUG: Fread_skill: no match: Author
Fri Jul 21 15:37:46 2006 :: [*****] BUG: Fread_skill: no match: ~
Fri Jul 21 15:37:46 2006 :: [*****] BUG: Fread_skill: no match: ~
Fri Jul 21 15:37:46 2006 :: Sorting skill table...
Fri Jul 21 15:37:46 2006 :: Remapping slots to sns
Fri Jul 21 15:37:46 2006 :: Loading classes
Fri Jul 21 15:37:46 2006 :: Loading races
Fri Jul 21 15:37:46 2006 :: Loading herb table
Fri Jul 21 15:37:46 2006 :: Loading tongues
Fri Jul 21 15:37:46 2006 :: Making wizlist
Fri Jul 21 15:37:46 2006 :: Initializing random number generator
Fri Jul 21 15:37:46 2006 :: Setting time and weather
Fri Jul 21 15:37:46 2006 :: Assigning gsn's
Fri Jul 21 15:37:46 2006 :: Reading in area files...
(help.are)
gods.are : Rooms: 1200 - 1201 Objs: 1200 - 1200 Mobs: 1200 - 1200
limbo.are : Rooms: 2 - 99 Objs: 2 - 99 Mobs: 1 - 99
newacad.are : Rooms: 10300 - 10499 Objs: 10300 - 10499 Mobs: 10300 - 10499
newgate.are : Rooms: 100 - 199 Objs: 100 - 199 Mobs: 100 - 199
newdark.are : Rooms: 21000 - 21499 Objs: 21000 - 21435 Mobs: 21000 - 21499
haon.are : Rooms: 6000 - 6156 Objs: 6000 - 6155 Mobs: 6000 - 6117
midennir.are : Rooms: 3500 - 3590 Objs: 3500 - 3550 Mobs: 3500 - 3550
sewer.are : Rooms: 7001 - 7445 Objs: 7190 - 7310 Mobs: 7000 - 7206
redferne.are : Rooms: 7900 - 7918 Objs: 7909 - 7911 Mobs: 7900 - 7900
grove.are : Rooms: 8901 - 8999 Objs: 8900 - 8919 Mobs: 8900 - 8911
dwarven.are : Rooms: 6500 - 6554 Objs: 6502 - 6519 Mobs: 6500 - 6517
daycare.are : Rooms: 6601 - 6651 Objs: 6600 - 6647 Mobs: 6600 - 6610
grave.are : Rooms: 3600 - 3651 Objs: 3600 - 3613 Mobs: 3600 - 3605
chapel.are : Rooms: 3405 - 3475 Objs: 3400 - 3430 Mobs: 3400 - 3416
astral.are : Rooms: 800 - 899 Objs: 800 - 899 Mobs: 800 - 899
Build.are : Rooms: 9500 - 9589 Objs: 0 - 0 Mobs: 0 - 0
pixie.are : Rooms: 2070 - 2099 Objs: 2070 - 2076 Mobs: 2070 - 2073
export.are : Rooms: 9810 - 9899 Objs: 9810 - 9899 Mobs: 9800 - 9899
srefuge.are : Rooms: 1500 - 1599 Objs: 1500 - 1599 Mobs: 1500 - 1599
manor.are : Rooms: 2400 - 2499 Objs: 2400 - 2499 Mobs: 2405 - 2484
unholy.are : Rooms: 2101 - 2172 Objs: 2101 - 2150 Mobs: 2101 - 2120
gallery.are : Rooms: 24800 - 24899 Objs: 24800 - 24899 Mobs: 24800 - 24899
Fri Jul 21 15:37:47 2006 :: Fixing exits
Fri Jul 21 15:37:47 2006 :: Initializing economy
Fri Jul 21 15:37:47 2006 :: Resetting areas
Fri Jul 21 15:37:47 2006 :: Loading buildlist
Fri Jul 21 15:37:47 2006 :: ../gods/Admin
Fri Jul 21 15:37:47 2006 :: Loading boards
Fri Jul 21 15:37:47 2006 :: ../boards/immortal.brd
Fri Jul 21 15:37:47 2006 :: ../boards/highgod.brd
Fri Jul 21 15:37:47 2006 :: Loading clans
Fri Jul 21 15:37:47 2006 :: Loading clans...
Fri Jul 21 15:37:47 2006 :: vampire.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: druid.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: warrior.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: augurer.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: thief.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: cleric.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: mage.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: ranger.gui
Fri Jul 21 15:37:47 2006 :: Cannot open clan vault
Fri Jul 21 15:37:47 2006 :: $
Fri Jul 21 15:37:47 2006 :: Done clans
Fri Jul 21 15:37:47 2006 :: Loading councils
Fri Jul 21 15:37:47 2006 :: Loading councils...
Fri Jul 21 15:37:47 2006 :: $
Fri Jul 21 15:37:47 2006 :: Done councils
Fri Jul 21 15:37:47 2006 :: Loading deities
Fri Jul 21 15:37:47 2006 :: Loading deities...
Fri Jul 21 15:37:47 2006 :: $
Fri Jul 21 15:37:47 2006 :: Done deities
Fri Jul 21 15:37:47 2006 :: Loading watches
Fri Jul 21 15:37:47 2006 :: Loading bans
Fri Jul 21 15:37:47 2006 :: Done.
Fri Jul 21 15:37:47 2006 :: Loading reserved names
Fri Jul 21 15:37:47 2006 :: Loading corpses
Fri Jul 21 15:37:47 2006 :: Loading Immortal Hosts
Fri Jul 21 15:37:47 2006 :: Done.
Fri Jul 21 15:37:47 2006 :: Loading Projects
Fri Jul 21 15:37:47 2006 :: Loading Morphs
Fri Jul 21 15:37:47 2006 :: Done.
Fri Jul 21 15:37:47 2006 :: Initializing socket
Fri Jul 21 15:37:47 2006 :: IMC: Loading IMC2 command table...
Fri Jul 21 15:37:47 2006 :: IMC: Loading IMC2 network data...
Fri Jul 21 15:37:47 2006 :: IMC: Loading IMC2 help file...
Fri Jul 21 15:37:47 2006 :: IMC: Loading IMC2 color table...
Fri Jul 21 15:37:47 2006 :: IMC: Loading IMC2 who template...
Fri Jul 21 15:37:47 2006 :: IMC: imcfread_word: EOF encountered on read.
Fri Jul 21 15:37:47 2006 :: IMC: IMC2 network data loaded. Autoconnect not set.
IMC2 will need to be connected manually.
Fri Jul 21 15:37:47 2006 :: (Name Not Set) ready on port 4000.
Now connect to it and login as "admin" password "admin".
Commands work, no error messages, all working OK. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
Posted by
| Kingsmill
USA (78 posts) Bio
|
Date
| Reply #36 on Fri 21 Jul 2006 03:18 PM (UTC) |
Message
| IT WORKS !!!!!!
YaaaaY!!!!
Your the bombdigity!!!
thanks,
Kingsmill |
T.A.N.S.T.A.F.L.
There Aint No Such Thing As Free Lunch,
From the moon is a harsh mistress. | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
87,886 views.
This is page 3, subject is 3 pages long:
1
2
3
It is now over 60 days since the last post. This thread is closed.
Refresh page
top