|
From: <gjh...@us...> - 2004-03-04 00:21:27
|
Update of /cvsroot/mistmud/mistmud In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26560 Modified Files: act.wizard.c interpreter.c Log Message: - removed some unterminated string constant errors Index: act.wizard.c =================================================================== RCS file: /cvsroot/mistmud/mistmud/act.wizard.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** act.wizard.c 17 Aug 2003 03:20:10 -0000 1.9 --- act.wizard.c 4 Mar 2004 00:00:39 -0000 1.10 *************** *** 2183,2203 **** if (!strcmp(item, "help")) { ! send_to_char("Help for Oedit. Command line Parameters OEDIT <NAME> <FIELD> <VALUE>\r ! List of Fields :\r ! ldesc = Long Item description | sdesc = Short description\r ! extra = Extra descriptions*NI*| name = Item name\r ! wflags = wear flags | afflags= affect flags\r ! exflags= extra flags | weight = item weight\r ! cost = item cost to rent per day\r ! value = Item value if sold | timer = item timer\r ! type = item type\r ! v0 = value[0] of item | v1 = value[1] of item\r ! v2 = value[2] of item | v3 = value[3] of item\r ! aff1 = special affect 1 (requires another value, oedit aff1 <modifer> <type>)\r ! aff2 = special affect 2 | aff3 = special affect 3\r ! aff4 = special affect 4 | aff5 = special affect 5\r ! speed = speed of weapon | ego = level of item \r ! max = max of item | fullness = Show container fullness? 0=Yes, 1=No *NI*\r ! \rNote: NI = Not implemented.\n\r", ch); return; --- 2183,2203 ---- if (!strcmp(item, "help")) { ! send_to_char("Help for Oedit. Command line Parameters OEDIT <NAME> <FIELD> <VALUE>\r" ! "List of Fields :\r" ! "ldesc = Long Item description | sdesc = Short description\r" ! "extra = Extra descriptions*NI*| name = Item name\r" ! "wflags = wear flags | afflags= affect flags\r" ! "exflags= extra flags | weight = item weight\r" ! "cost = item cost to rent per day\r" ! "value = Item value if sold | timer = item timer\r" ! "type = item type\r" ! "v0 = value[0] of item | v1 = value[1] of item\r" ! "v2 = value[2] of item | v3 = value[3] of item\r" ! "aff1 = special affect 1 (requires another value, oedit aff1 <modifer> <type>)\r" ! "aff2 = special affect 2 | aff3 = special affect 3\r" ! "aff4 = special affect 4 | aff5 = special affect 5\r" ! "speed = speed of weapon | ego = level of item \r" ! "max = max of item | fullness = Show container fullness? 0=Yes, 1=No *NI*\r" ! "\rNote: NI = Not implemented.\n\r", ch); return; *************** *** 5223,5230 **** */ ! send_to_char("You are struck by a black beam from above, it hurts!\r ! The life force from your body fades and you feel yourself lose\r ! memories of old times and battles.\r ! The feeling fades and you shiver at a cold gust of wind.\n\r", victim); --- 5223,5230 ---- */ ! send_to_char("You are struck by a black beam from above, it hurts!\r" ! "The life force from your body fades and you feel yourself lose\r" ! "memories of old times and battles.\r" ! "The feeling fades and you shiver at a cold gust of wind.\n\r", victim); *************** *** 5264,5269 **** if (!*arg) { send_to_char("Eh? What do you wanna intervene upon?\n\r", ch); ! send_to_char("interven [type] ! (Type=portal,summon,astral,kill,logall,eclipse,dns,color,wizlock,nopoly,req,rp,worldarena, deinit )\n\r\n\r", ch); return; } --- 5264,5269 ---- if (!*arg) { send_to_char("Eh? What do you wanna intervene upon?\n\r", ch); ! send_to_char("interven [type]" ! "(Type=portal,summon,astral,kill,logall,eclipse,dns,color,wizlock,nopoly,req,rp,worldarena, deinit )\n\r\n\r", ch); return; } *************** *** 5275,5280 **** ("You part the planets and the sun shines through!\n", ch); send_to_outdoor ! ("The planets return to their normal orbit, slowly ! the light will return.\n"); log("The world is enlightend"); } else { --- 5275,5280 ---- ("You part the planets and the sun shines through!\n", ch); send_to_outdoor ! ("The planets return to their normal orbit, slowly " ! "the light will return.\n"); log("The world is enlightend"); } else { Index: interpreter.c =================================================================== RCS file: /cvsroot/mistmud/mistmud/interpreter.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** interpreter.c 5 Sep 2003 20:40:52 -0000 1.19 --- interpreter.c 4 Mar 2004 00:00:39 -0000 1.20 *************** *** 210,215 **** if (HasClass(ch, TempDis) && GetMaxLevel(ch) < 58 && IS_PC(ch)) { ! send_to_char("Sorry, we are tracking down a bug and this class or one of ! your classes is disabled.\n\r", ch); return; --- 210,214 ---- if (HasClass(ch, TempDis) && GetMaxLevel(ch) < 58 && IS_PC(ch)) { ! send_to_char("Sorry, we are tracking down a bug and this class or one of your classes is disabled.\n\r", ch); return; *************** *** 365,370 **** if (IS_SET(ch->specials.act, ACT_POLYSELF) || IS_PC(ch)) { ! send_to_char("You have been frozen in your steps, you cannot do a ! thing!\n\r", ch); return; } --- 364,369 ---- if (IS_SET(ch->specials.act, ACT_POLYSELF) || IS_PC(ch)) { ! send_to_char("You have been frozen in your steps, you cannot do a" ! " thing!\n\r", ch); return; } |