Help for this page

Select Code to Download


  1. or download this
    $characters{'Bob the Fighter'}->{'Feats'}= [ 'Strong Spit', 'Perl Guru
    +'];
    # or
    @feats = ('Strong Spit', 'Perl Guru');
    $characters{'Bob the Fighter'}->{'Feats'} = \@feats;
    
  2. or download this
    $characters{'Bob the Fighter'}->{'Feats'}->[1];
    #is equal to 'Perl Guru'
    
  3. or download this
    $characters[3]->{'Attributes'}->{'Str'};
    
  4. or download this
    $characters->{'Bob the Fighter'}->{'Attributes'}->{'Str'};
    
  5. or download this
    if($char{Bob}->{Feats}->{'Good With Pointy Objects'}){
        Kill_Bad_Guy();
    } else {
        Die_Hideous_Death();
    }