Summary
RPGツクール2000で作成されたXIのクローンゲームXI 系
Reference
OKASHIN FACTORY - RPGツクール2000http://www5f.biglobe.ne.jp/~okka/RPG2000.html
ゲーム - PSone Books XI(sai)
ゲーム - PlayStation the Best XI[sai]JUMBO
ゲーム - XIゴ(サイゴ)
javascript:(
function(){
var links=document.getElementsByTagName('a');
for(i=0;i<links.length;i){
var theLink=links[i];
if(theLink.getAttribute('rel')=='nofollow'){
theLink.style.backgroundColor='red';
theLink.style.color='white';
theLink.style.fontWeight='bold';
theLink.style.textDecoration='none';
}
}
}
)();
<head profile="http://purl.org/net/ns/metaprof">
### Wikipedia へのリンクプラグイン
# usage: {{wikipedia('word','country')}}
sub wikipedia {
my $default = 'ja';
my ($str,$country) = @_;
if (!defined($country)){
$country = $default;
}
my $prefix = qq(http://$country.wikipedia.org/wiki);
my $enc = Jcode->new($str)->utf8;
$enc =~ s/([^0-9a-z_ ])/'%'.unpack('H2', $1)/gei;
$enc =~ s/\s/+/g;
return qq(<a href="$prefix/$enc" title="Wikipedia ($country) - $str">Wikipedia - $str</a>);
}
### Wikipedia へのリンクプラグイン
# usage: {{wikipedia('word')}}
sub wikipedia {
my ($str) = @_;
my $prefix = q(http://ja.wikipedia.org/wiki);
my $enc = Jcode->new($str)->utf8;
$enc =~ s/([^0-9a-z_ ])/'%'.unpack('H2', $1)/gei;
$enc =~ s/\s/+/g;
return qq(<a href="$prefix/$enc" title="Wikipedia - $str">Wikipedia - $str</a>);
}