1 頁 (共 1 頁)

[問題]RPG Stats/Battle mod

發表於 : 2004-01-21 11:46
ilove1291
http://www.phpbb.com/phpBB/viewtopic.php?t=121377

http://www.shiningforcecentral.com/phpbbmods

FEATURES

- Highly customisable through admin panel
- Allows users to select a class when signing up
- Adds user stats (HP, MP, EXP, PL, ATT, DEF and more!) to user profile
- Replenishes user stats when they view their profile each day
- Allows users to save/restore their stats/class
- Allows users to battle random monsters or set bosses
- Allows shop items to be usable in battle mode
- Shows user's status overlaid onto avatar - dead, poisoned, cursed
- Users gain experience for posting etc
- Users gain levels when they have enough experience
- Level up stat gains are based on their chosen class
- Users can promote to a higher class or change to a new basic class
- Provides a good basis for future mods, for example user VS user battles!
- Users can combine items in a Cauldron to make other items
- Admins can specifiy item combos for the above
- Users can stay at an 'Inn' to restore their stats
- Users can 'Camp' instead of using the inn... but risk various dangers!
- and more...!

作者文章下面附上這一句\r
IMPORTANT NOTE
I do not offer support for my mods, so do not ask. Nor do I make custom mods.
(sorry if that seems rude, but I just don't have the time now and I'm tired of people hassling me about them)

我下載下來看起來好像是分成好幾個mod的 請問有人裝過嗎?_?
我對這個很有興趣\r
Highly customisable through admin panel <<<水怪千呼萬喚的控制台??
Shows user's status overlaid onto avatar - dead, poisoned, cursed ,,,中毒頭像變色???

發表於 : 2004-01-21 14:54
依夢兒
我裝過了,這支 RPG 就是之前討論的「光明與黑暗」外掛:
http://phpbb-tw.net/phpbb/viewtopic.php?p=129929#129929

三個月前裝完後發現有一些 BUG 沒解決,遊戲沒有辦法順利玩下去,所以又拆掉了。
過一陣子打算再重裝一次。 :P

發表於 : 2004-01-21 15:32
ilove1291
3q 謝謝你提醒呢~*

有誰裝了可以借玩看看的嗎?

發表於 : 2004-01-21 16:02
依夢兒

發表於 : 2004-01-21 16:10
ilove1291
那個戰鬥畫面真有趣耶\r

問一下喔
http://www1.linkclub.or.jp/~chatea/comf ... dhtml.html
那個字彈出來的要怎麼做阿

發表於 : 2004-01-21 16:38
依夢兒
應該是 Java Script 吧!
原始檔內有這麼一段:

代碼: 選擇全部

function kakikae(pp){
if (pp==1 ) {outputLAYER('-279 <font color=green>+27HP</font> <font color=green>+13HP</font> ','<font color=blue>無傷</font> -17 <font color=green>+211HP</font> '); }
if (pp==2 ) {outputLAYER('<font color=green>+189HP</font> <font color=green>+189HP</font> <font color=green>+15HP</font> ','<font color=blue>無傷</font> -29 <font color=green>+35HP</font> '); }
if (pp==3 ) {outputLAYER('-234 <font color=green>+54HP</font> <font color=green>+54HP</font> ','<font color=blue>無傷</font> -598 <font color=green>+288HP</font> '); }
if (pp==4 ) {outputLAYER('<font color=green>+27HP</font> <font color=green>+27HP</font> <font color=green>+27HP</font> ','-178   <font color=blue>無傷</font> '); }
if (pp==5 ) {outputLAYER('<font color=green>+135HP</font> <font color=green>+547HP</font> <font color=green>+135HP</font> ','    -207 '); }
if (pp==6 ) {outputLAYER('<font color=green>+152HP</font> <font color=green>+140HP</font> <font color=green>+152HP</font> ','    -107 '); }
if (pp==7 ) {outputLAYER('<font color=red>★WIN★</font>','<font color=blue>★LOSE★</font>'); }

}
// (弾むスクリプト).....................Javascriptの小技 (SHUNSUKE NAGAIさん)
// http://www.hoops.livedoor.com/~se_nagai/

y       = 140; 
dy      = 0;
baseY   = 200; 
offsset = 15; 
timerID = 0;
time    = 30; 

function ya(layname){
dy      = 0;
yset   = 60;
y_width = eval(getINNERWIDTH()/100);
xset  = y_width*17;
if (layname == 'mv2') xset = xset+365;

        if (document.layers)   document[layname].top = yset;
        if (document.layers)   document[layname].left = xset;

        if (document.all)       window[layname].style.pixelTop = yset;
        if (document.all)       window[layname].style.pixelLeft = xset;
}

function getPos(layname)
{
        if (document.layers)    y = document[layname].top;
        if (document.all)       y = window[layname].style.pixelTop;
}

function moveTitle()
{
        y = y + dy;
        if (y >= baseY) { dy = -dy; y = baseY;}
        dy = dy + offsset;
        if (document.layers)    document["mv"].top = y;
        if (document.all)       window["mv"].style.pixelTop = y;

        if (document.layers)    document["mv2"].top = y;
        if (document.all)       window["mv2"].style.pixelTop = y;

        clearTimeout(timerID);
        timerID = setTimeout("moveTitle()",time);
}
//JavaC のスクリプト  http://www2f.biglobe.ne.jp/~takan/javac/index.html
var quake_time = 3;   //上下に揺らす回数の設定します
var quake_scro = 15;   //動かす幅をピクセル単位で設定します

function quake() {
                   for(h=0; h<quake_time; h++) {
                                 for(i=0; i<quake_scro; i=i+15) window.scroll(0,i); 
                                for(j=quake_scro; j>0; j=j-15) window.scroll(0,j); 
                       }
                       window.scroll(0,0);
}

發表於 : 2004-01-22 18:39
sisomy
這個外掛有和之前寵物屋同樣的問題
就是使用的某些技能和圖片
都必須以英文來取名字
如果要改成中文
那圖片本身要改成中文外
有些PHP程式本身名稱就要是中文?_?
反正要大大的修改\r
除此之外
倒是一個無聊沒事想要挑戰的人可以去裝裝看
安裝完畢之後
你還要為你自己的遊戲設定人物\r
人物屬性.物品.物品屬性\r
總之就像要從頭到尾自己去設定一個遊戲\r

我自己試玩過認為還不錯玩\r
只是後來因為無法將資料轉移\r
玩家決定不要改版繼續玩水怪..
所以暫時放棄研究那個遊戲&^^