本帖最后由 caidou 于 2012-10-21 23:00 编辑
rt 组队后偶尔在打怪时能看到同伴的hpmp 然后偶尔会和同伴心有灵犀出暴击 大概1.5倍伤害 但不知道经验为什么总是队友+0
去网上找了个宠物乐园的源码 貌似仓库是会满的...
if(!updatestoragebyitemname($_G['username'],$itemname,1)){
$showtxt5 .= " <font color=red>仓库数量已满,自动丢弃 $cname </font>";
另外从代码来看 加技能比加任务加怪加装备要难不少 后三样管理员都有预先写好的代码 加技能却要改战斗部分商店部分学习部分的代码
那个赛亚连波可能不是从原本的技能改过来的?
我想如果管理层忙不过来可以考虑授予有兴趣的人权限的方式来增加任务以及敌人等方式来充实这个游戏
还有搜到的都是无心宠物乐园 天心...
这是mypet。php下面的技能显示代码 可能改这里就能显示技能了
if($mypetdata['career']==1){
$work="<img src=$imgpath/skill/knight.jpg alt=勇者头衔:圣骑士> ";
if($mypetmagic['mheal']) {$smh .= "<img src=$imgpath/skill/heal.jpg alt=治疗术 width='35'> ";}
if($mypetmagic['mtitan']) {$smh .= "<img src=$imgpath/skill/titan.jpg alt=大地术 width='35'> ";}
if($mypetmagic['mpower']) {$smh .= "<img src=$imgpath/skill/power.jpg alt=气血术 width='35'> ";}
if($mypetmagic['mlive']) {$smh .= "<img src=$imgpath/skill/live.jpg alt=复活术 width='35'> ";}
}elseif($mypetdata['career']==2){
$work="<img src=$imgpath/skill/killer.jpg alt=勇者头衔:刺客>";
if($mypetmagic['mtwohit']){$smh .= "<img src=$imgpath/skill/twohit.jpg alt=二连击 width='35'> ";}
if($mypetmagic['mlothit']) {$smh .= "<img src=$imgpath/skill/lothit.jpg alt=多重攻击 width='35'> ";}
if($mypetmagic['mkiller2']) {$smh .= "<img src=$imgpath/skill/killer2.jpg alt=幻影分身 width='35'> ";}
}elseif($mypetdata['career']==3){
$work="<img src=$imgpath/skill/magic.jpg alt=勇者头衔:大法师>";
if($mypetmagic['msleep']) {$smh .= "<img src=$imgpath/skill/sleep.jpg alt=催眠术 width='35'> ";}
if($mypetmagic['mfire']) { $smh .= "<img src=$imgpath/skill/fire.jpg alt=炎爆术 width='35'> ";}
if($mypetmagic['mice']) { $smh .= "<img src=$imgpath/skill/ice.jpg alt=寒冰术 width='35'> ";}
if($mypetmagic['mfirewind']) { $smh .= "<img src=$imgpath/skill/firewind.jpg alt=地爆术 width='35'> ";}
if($mypetmagic['mlightbomb']) { $smh .= "<img src=$imgpath/skill/lightbomb.jpg alt=光爆术 width='35'> ";}
if($mypetmagic['mcallhell']) { $smh .= "<img src=$imgpath/skill/callhell.jpg alt=召唤术 width='35'> ";}
}else{
$work=$smh="";
}