私設SoS2オーナー応援BBS

新規発言一覧最新記事過去一覧検索ダウンロードページHOME

No.1373  Re[11]:下の続きです
発言者: cosmos
発言日: 2006 11/23 00:12
下のようにするとエラーは消えたのですが
        srand(time | $$);
        $rnd = int(rand(100)) + 1;
もコメントアウトしないほうがいいのですか?
あと兜等を鎧として扱う場合は何もしなくていいのですか?
追加する場合は単にスキルを追加すればいいのでしょうか?
# Sub Blacksmith #
sub blacksmith {
    if ($sp =~ /Ws|As|Sc/) {
        srand(time | $$);
        $rnd = int(rand(100)) + 1;
# if ($sp =~ /Ws/ && $sp =~ /As/ && $sp =~ /Sc/) { $trnd = int(rand(8)) }
# elsif ($sp =~ /Ws/ && $sp =~ /As/) { $trnd = int(rand(3)) }
# elsif ($sp =~ /Ws/ && $sp =~ /Sc/) { $trnd = (0,3)[int(rand(2))] }
# elsif ($sp =~ /As/ && $sp =~ /Sc/) { $trnd = int(rand(3)) + 1 }
# elsif ($sp =~ /Ws/) { $trnd = int(rand(1)) }
# elsif ($sp =~ /As/) { $trnd = int(rand(2)) + 1 }
# elsif ($sp =~ /Sc/) { $trnd = 3 }
my @skills = ('Ws', 'As', 'As', 'Sc');
# 0:武器、1:盾、2:鎧、3:銀細工、4以降:追加分
my $max = scalar(@skills);
# @skillsの要素数
my @types = ();
for(my $i = 0; $i < $max; $i++){
push(@types, $i) if(index($sp, $skills[$i]) != -1);
# 作成スキルを習得している場合はインデックスをリストに追加
}
if(!@types){
# 作成スキルがない場合
push(@msg, '作成スキルを習得していません。');
return;
}
my $trnd = $types[int(rand(@types))];
# リストから1つ選択

▼関連発言

1360:下の続きです [cosmos] 11/20 23:23
 └1361:Re:下の続きです [moon] 11/21 00:15
  └1362:Re[2]:下の続きです [cosmos] 11/21 15:12
   └1364:Re[3]:下の続きです [moon] 11/21 20:47
    └1365:Re[4]:下の続きです [cosmos] 11/21 21:43
     └1366:Re[5]:下の続きです [cosmos] 11/21 21:45
      └1367:Re[6]:下の続きです [moon] 11/21 23:20
       └1368:Re[7]:下の続きです [cosmos] 11/21 23:38
        └1369:Re[8]:下の続きです [moon] 11/22 00:10
         ├1370:Re[9]:下の続きです [cosmos] 11/22 00:26
         └1371:Re[9]:下の続きです [cosmos] 11/22 14:05
          └1372:Re[10]:下の続きです [moon] 11/22 23:23
           └1373:Re[11]:下の続きです [cosmos] 11/23 00:12
            └1374:Re[12]:下の続きです [moon] 11/23 01:12
             └1375:Re[13]:下の続きです [cosmos] 11/23 08:23<-last

Pass 保存


CGIROOM