# スペシャル画像2
if ($love > $special2) {
if ($timeafter == $specialtime2a || $timeafter == $specialtime2b) {
&petnow($friend_img,$friend_msg);
return;
}
}
# → ここ!
# ラブポイントが一定以上でノーマル画像
if ( $love >= $bad - $good ) {
&petnow($scheduleimg[$timeafter],$schedulemsg[$timeafter]);
return;
}
|
# イベント用現在の日付取得
($isec,$imin,$ihour,$iday,$imon,$iyear) = localtime(time);
$iyear += 1900;
$imon++;
# イベント用前回の日付取得
($zsec,$zmin,$zhour,$zday,$zmon,$zyear) = localtime($gdate);
$zyear += 1900;
$zmon++;
# イベント・誕生日
if ( $imon == 10 && $iday == 9 ) {
if ( $zmon != 10 || $zday != 9 ) {
$event_img = 'char_ten.gif';
$event_msg = '今日は誕生日です。';
&petnow($event_img,$event_msg);
return;
}
}
|
# イベント・誕生日
if ( $imon == 10 && $iday == 9 ) {
# if ( $zmon != 10 || $zday != 9 ) {
$event_img = 'char_ten.gif';
$event_msg = '今日は誕生日です。';
&petnow($event_img,$event_msg);
return;
# }
}
|