On Thu, 18 Jul 1996, Sergey Katsev wrote: > I added a new class (Knight) successfully, but now, when it tries to use > any of the warrior skills (like kick), the mud won't let it (please leave > the martial arts to the fighters). Does anyone know what I have to edit > to fix this? Thanks you. > Phantom In act.offensive.c, in the function do_kick, you'll find this around line 380: if (GET_CLASS(ch) != CLASS_WARRIOR) { send_to_char("Leave the martial arts to the fighters.") return 0; } Just change it to something like: if ((GET_CLASS(ch) != CLASS_WARRIOR) && (GET_CLASS(ch) != CLASS_KNIGHT)) { send_to_char("Leave the martial arts to the fighters and knights.") return 0; } Do the same change to the similar lines that are in do_rescue and in do_bash and you're ready to go! ------------------------------------------------------------------------------ Visita Agharti!!! | Carlos Rodriguez http://wwww.chs.itesm.mx:8080/ | crodrigu@campus.chs.itesm.mx crodrigu/Agharti/ | webadmin@campus.chs.itesm.mx | http://www.chs.itesm.mx:8080/crodrigu/ ------------------------------------------------------------------------------ From Tyler_Wilhite@clr.com 18 Jul 96 10:14:20 EDT X-SystemInfo: MyE-Mail: EMail X-Message-No: 2585 (database) From: Tyler Wilhite/FASTTAX <Tyler_Wilhite@clr.com> To: circle <circle@pvv.ntnu.no> Subject: Re:1/2 questions fixed Date: Thu, 18 Jul 96 10:14:00 Message-ID: <9607181716.AA1923@clrgate1.fasttax.com> X-POP3-Rcpt: lk4150@per Return-Path: owner-circle@pvv.ntnu.no Received: from flipper.pvv.ntnu.no (43@flipper.pvv.ntnu.no [129.241.210.200]) by per.cybercity.dk (8.6.12/8.6.12) with ESMTP id RAA04835 for <lk4150@krull.dk>; Thu, 18 Jul 1996 17:34:01 +0200 Received: (from majordomo@localhost) by flipper.pvv.ntnu.no (8.7.5/8.6.12) id RAA02746 for circle-outgoing; Thu, 18 Jul 1996 17:11:22 +0200 Received: from sunsrv12.clr.com (sunsrv12.CLR.com [164.57.9.12]) by flipper.pvv.ntnu.no (8.7.5/8.6.12) with ESMTP id RAA02732 for <circle@pvv.unit.no>; Thu, 18 Jul 1996 17:11:06 +0200 Received: from clrgate1.fasttax.com (clrgate1.CLR.com [164.57.201.14]) by sunsrv12.clr.com (8.7.3/8.7.3) with SMTP id KAA29822 for <circle@pvv.unit.no>; Thu, 18 Jul 1996 10:14:24 -0500 (CDT) Received: by clrgate1.fasttax.com (IBM OS/2 SENDMAIL VERSION 1.3.14/1.0)id AA1923; Thu, 18 Jul 96 10:16:31 -0700 Received: by FASTTAX (Lotus Notes Mail Gateway for SMTP V1.1) idFC346ACCDD4290B68625636B0053195D; Thu, 18 Jul 96 10:16:30 EDT Mime-Version: 1.0 Sender: owner-circle@pvv.ntnu.no Precedence: bulk >big snip >Had probs with editing zones > said rooms were not there. In case anyone cares/wants to know. I fixed the problem, it had to do with permissions. When I recopied the files, it put a different 'group' on the zone/room/everything files. So, when the mud was trying to boot, it didn't have access to all the files it needed to load the zone/rooms/etc properly.. nothing a chgrp -R <group> circle30bpl11/* didn't fix.. ;) thanks for the leads though! Btw, has anyone tried to install some sort of gold system into their mud, I mean with platinum, gold, silver, copper? so, when you buy stuff you get change... 1 = 5 = 100 = 1000 like that exchange rate. Pretty much the same way dnd does it. I am trying to implement this idea into my mud. Any ideas where to start/look? Tyler
This archive was generated by hypermail 2b30 : 12/07/00 PST