I am getting parse errors. These really stump me, because I cannot find the ":" Cygwin is complaining about.
USA
#1
USA
#2
USA
#3
USA
#4
Canada
#5
USA
#6
USA
#7
USA
#8
USA
#9
USA
#10
USA
#11
USA
#12
USA
#13
act_wiz.c: In function 'do_mstat':
act_wiz.c:1290: error:parse error before ':' token
act_wiz.c:1290: error:parse error before ')' token
[\code]
The next posts are the entirety of do_mstat
/*line 1232*/void do_mstat( CHAR_DATA *ch, char *argument )
{
char arg[MAX_INPUT_LENGTH];
AFFECT_DATA *paf;
CHAR_DATA *victim;
SKILLTYPE *skill;
int x;
set_char_color( AT_PLAIN, ch );
one_argument( argument, arg );
if ( arg[0] == '\0' )
{
send_to_char( "Mstat whom?\n\r", ch );
return;
}
if ( arg[0] != '\'' && arg[0] != '"' && strlen(argument) > strlen(arg) )
strcpy( arg, argument );
if ( ( victim = get_char_world( ch, arg ) ) == NULL )
{
send_to_char( "They aren't here.\n\r", ch );
return;
}
if ( get_trust( ch ) < get_trust( victim ) && !IS_NPC(victim) )
{
set_char_color( AT_IMMORT, ch );
send_to_char( "Their godly glow prevents you from getting a good look.\n\r", ch );
return;
}
ch_printf( ch, "Name: %s Organization: %s\n\r",
victim->name,
( IS_NPC( victim ) || !victim->pcdata->clan ) ? "(none)"
: victim->pcdata->clan->name );
if( get_trust(ch) >= LEVEL_GOD && !IS_NPC(victim) && victim->desc )
ch_printf( ch, "Descriptor: %d Trust: %d AuthedBy: %s\n\r",
victim->desc->host, victim->desc->descriptor,
victim->trust, victim->pcdata->authed_by[0] != '\0'
? victim->pcdata->authed_by : "(unknown)" );
if ( !IS_NPC(victim) && victim->pcdata->release_date != 0 )
ch_printf(ch, "Helled until %24.24s by %s.\n\r",
ctime(&victim->pcdata->release_date),
victim->pcdata->helled_by);
ch_printf( ch, "Vnum: %d Sex: %s Room: %d Count: %d Killed: %d\n\r",
IS_NPC(victim) ? victim->pIndexData->vnum : 0,
victim->sex == SEX_MALE ? "male" :
victim->sex == SEX_FEMALE ? "female" : "neutral",
victim->in_room == NULL ? 0 : victim->in_room->vnum,
IS_NPC(victim) ? victim->pIndexData->count : 1,
IS_NPC(victim) ? victim->pIndexData->killed
: victim->pcdata->mdeaths + victim->pcdata->pdeaths
);
ch_printf( ch, "Str: %d Int: %d Wis: %d Dex: %d Con: %d Cha: %d Lck: %d Frc: %d\n\r",
get_curr_str(victim),
get_curr_int(victim),
get_curr_wis(victim),
get_curr_dex(victim),
get_curr_con(victim),
get_curr_cha(victim),
get_curr_lck(victim),
get_curr_frc(victim) );
ch_printf( ch, "Hps: %d/%d Force: %d/%d Move: %d/%d\n\r",
victim->hit, victim->max_hit,
victim->mana, victim->max_mana,
victim->move, victim->max_move );
if ( !IS_NPC( victim ) )
{
int ability;
for ( ability = 0 ; ability < MAX_ABILITY ; ability++ )
ch_printf( ch, "%-15s Level: %-3d Max: %-3d Exp: %-10ld Next: %-10ld\n\r",
ability_name[ability], victim->skill_level[ability], max_level(victim, ability), victim->experience[ability],
exp_level( victim->skill_level[ability]+1 ) );
}
ch_printf( ch,
"Top Level: %d Race: %d Align: %d AC: %d Gold: %d\n\r",
victim->top_level, victim->race, victim->alignment,
GET_AC(victim), victim->gold );
if ( victim->race < MAX_NPC_RACE && victim->race >= 0 )
ch_printf( ch, "Race: %s\n\r",
npc_race[victim->race] );
ch_printf( ch, "Hitroll: %d Damroll: %d Position: %d Wimpy: %d \n\r",
GET_HITROLL(victim), GET_DAMROLL(victim),
victim->position, victim->wimpy );
ch_printf( ch, "Fighting: %s Master: %s Leader: %s\n\r",
victim->fighting ? victim->fighting->who->name : "(none)",
victim->master ? victim->master->name : "(none)",
victim->leader ? victim->leader->name : "(none)" );
if ( !IS_NPC(victim) )
ch_printf( ch,
"Thirst: %d Full: %d Drunk: %d Glory: %d/%d\n\r",
victim->pcdata->condition[COND_THIRST],
victim->pcdata->condition[COND_FULL],
victim->pcdata->condition[COND_DRUNK],
victim->pcdata->quest_curr,
victim->pcdata->quest_accum );
else
ch_printf( ch, "Hit dice: %dd%d+%d. Damage dice: %dd%d+%d.\n\r",
victim->pIndexData->hitnodice,
victim->pIndexData->hitsizedice,
victim->pIndexData->hitplus,
victim->pIndexData->damnodice,
victim->pIndexData->damsizedice,
victim->pIndexData->damplus );
ch_printf( ch, "MentalState: %d EmotionalState: %d\n\r",
victim->mental_state, victim->emotional_state );
ch_printf( ch, "Saving throws: %d %d %d %d %d.\n\r",
victim->saving_poison_death,
victim->saving_wand,
victim->saving_para_petri,
victim->saving_breath,
victim->saving_spell_staff );
ch_printf( ch, "Carry figures: items (%d/%d) weight (%d/%d) Numattacks: %d\n\r",
victim->carry_number, can_carry_n(victim), victim->carry_weight, can_carry_w(victim), victim->numattacks );
ch_printf( ch, "Years: %d Seconds Played: %d Timer: %d Act: %d\n\r",
get_age( victim ), (int) victim->played, victim->timer, victim->act );
if ( IS_NPC( victim ) )
{
ch_printf( ch, "Act flags: %s\n\r", flag_string(victim->act, act_flags) );
ch_printf( ch, "VIP flags: %s\n\r", flag_string(victim->vip_flags, planet_flags) );
}
else
{
ch_printf( ch, "Player flags: %s\n\r",
flag_string(victim->act, plr_flags) );
ch_printf( ch, "Pcflags: %s\n\r",
flag_string(victim->pcdata->flags, pc_flags) );
ch_printf( ch, "Wanted flags: %s\n\r",
flag_string(victim->pcdata->wanted_flags, planet_flags) );
}
ch_printf( ch, "Affected by: %s\n\r",
affect_bit_name( victim->affected_by ) );
ch_printf( ch, "Speaks: %d Speaking: %d\n\r",
victim->speaks, victim->speaking );
send_to_char( "Languages: ", ch );
for ( x = 0; lang_array[x] != LANG_UNKNOWN; x++ )
if ( knows_language( victim, lang_array[x], victim )
|| (IS_NPC(victim) && victim->speaks == 0) )
{
if ( IS_SET(lang_array[x], victim->speaking)
|| (IS_NPC(victim) && !victim->speaking) )
set_char_color( AT_RED, ch );
send_to_char( lang_names[x], ch );
send_to_char( " ", ch );
set_char_color( AT_PLAIN, ch );
}
else
if ( IS_SET(lang_array[x], victim->speaking)
|| (IS_NPC(victim) && !victim->speaking) )
{
set_char_color( AT_PINK, ch );
send_to_char( lang_names[x], ch );
send_to_char( " ", ch );
set_char_color( AT_PLAIN, ch );
}
send_to_char( "\n\r", ch );
if ( victim->pcdata && victim->pcdata->bestowments
&& victim->pcdata->bestowments[0] != '\0' )
ch_printf( ch, "Bestowments: %s\n\r", victim->pcdata->bestowments );
ch_printf( ch, "Short description: %s\n\rLong description: %s",
victim->short_descr,
victim->long_descr[0] != '\0' ? victim->long_descr : "(none)\n\r" );
if ( IS_NPC(victim) && ( victim->spec_fun || victim->spec_2 ) )
ch_printf( ch, "Mobile has spec fun: %s %s\n\r",
lookup_spec( victim->spec_fun ),
victim->spec_2 ? lookup_spec( victim->spec_2 ) : "" );
ch_printf( ch, "Body Parts : %s\n\r",
flag_string(victim->xflags, part_flags) );
ch_printf( ch, "Resistant : %s\n\r",
flag_string(victim->resistant, ris_flags) );
ch_printf( ch, "Immune : %s\n\r",
flag_string(victim->immune, ris_flags) );
ch_printf( ch, "Susceptible: %s\n\r",
flag_string(victim->susceptible, ris_flags) );
ch_printf( ch, "Attacks : %s\n\r",
flag_string(victim->attacks, attack_flags) );
ch_printf( ch, "Defenses : %s\n\r",
flag_string(victim->defenses, defense_flags) );
for ( paf = victim->first_affect; paf; paf = paf->next )
if ( (skill=get_skilltype(paf->type)) != NULL )
ch_printf( ch,
"%s: '%s' modifies %s by %d for %d rounds with bits %s.\n\r",
skill_tname[skill->type],
skill->name,
affect_loc_name( paf->location ),
paf->modifier,
paf->duration,
affect_bit_name( paf->bitvector )
);
return;
}
What is line 1290?
It should be:
get_curr_con(victim),
I threw that function into my mud, and it compiled fine. It may be somewhere above it. I would suggest a text editor that does syntax high lighting, very help fule for finding something like this.
What exactly are you changing to get this kind of parse error?
I have changed nothing, yet. Maybe I should get a newer version of acir_wiz.c.
... You've changed nothing at all and you're getting parse errors on a packaged version of your codebase ... ? Where exactly did you get this code?
I do not remember where I got it. I am going to try to download it again.
If you don't remember where you got it, how are you going to try and download it again? :/
I downloaded the newest release and it compiled fine.
Is there a reason you're being mysterious about which codebase this is? :)
Am I being mysterious? I had no intention to be. I am using SWFotE 2.0.