Changeset 1465 for irpg/trunk/htdocs/playerview.php
- Timestamp:
- Jan 13, 2006, 4:58:04 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irpg/trunk/htdocs/playerview.php
r1462 r1465 73 73 $uniquecolor="#be9256"; 74 74 if ($key == "helm" && substr($val,-1,1) == "a") { 75 $val = intval($val)." [<font color=\"$uniquecolor\"> Mattt's Omniscience Grand Crown</font>]";75 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext("Mattt's Omniscience Grand Crown")))."</font>]"; 76 76 } 77 77 if ($key == "tunic" && substr($val,-1,1) == "b") { 78 $val = intval($val)." [<font color=\"$uniquecolor\"> Res0's Protectorate Plate Mail</font>]";78 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext(Res0's Protectorate Plate Mail")))."</font>]"; 79 79 } 80 80 if ($key == "amulet" && substr($val,-1,1) == "c") { 81 $val = intval($val)." [<font color=\"$uniquecolor\"> Dwyn's Storm Magic Amulet</font>]";81 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext(Dwyn's Storm Magic Amulet")))."</font>]"; 82 82 } 83 83 if ($key == "weapon" && substr($val,-1,1) == "d") { 84 $val = intval($val)." [<font color=\"$uniquecolor\"> Jotun's Fury Colossal Sword</font>]";84 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext(Jotun's Fury Colossal Sword")))."</font>]"; 85 85 } 86 86 if ($key == "weapon" && substr($val,-1,1) == "e") { 87 $val = intval($val)." [<font color=\"$uniquecolor\"> Drdink's Cane of Blind Rage</font>]";87 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext(Drdink's Cane of Blind Rage")))."</font>]"; 88 88 } 89 89 if ($key == "boots" && substr($val,-1,1) == "f") { 90 $val = intval($val)." [<font color=\"$uniquecolor\"> Mrquick's Magical Boots of Swiftness</font>]";90 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext(Mrquick's Magical Boots of Swiftness")))."</font>]"; 91 91 } 92 92 if ($key == "weapon" && substr($val,-1,1) == "g") { 93 $val = intval($val)." [<font color=\"$uniquecolor\"> Jeff's Cluehammer of Doom</font>]";93 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext(Jeff's Cluehammer of Doom")))."</font>]"; 94 94 } 95 95 if ($key == "ring" && substr($val,-1,1) == "h") { 96 $val = intval($val)." [<font color=\"$uniquecolor\"> Juliet's Glorious Ring of Sparkliness</font>]";96 $val = intval($val)." [<font color=\"$uniquecolor\">".htmlentities(ucfirst(gettext(Juliet's Glorious Ring of Sparkliness")))."</font>]"; 97 97 } 98 98 echo " ".htmlentities(ucfirst(gettext($key)))." : $val<br />\n";
Note:
See TracChangeset
for help on using the changeset viewer.