UID72102
帖子
精華
主題
積分1062
現金
積極性
威望
違規
熱心
推廣次數
閱讀權限10
註冊時間2008-3-28
在線時間 小時
最後登錄1970-1-1
TA的每日心情 | 衰 2010-8-11 05:37 AM |
---|
簽到天數: 15 天 連續簽到: 0 天 [LV.4]偶爾看看III
|
我想把.持有角色ID 物品ID 這2個地方改為以名稱來顯示
請問一下我該怎麼做才有辦法呢?
mes "下面請輸入您需要尋找的^ff0000角色ID^000000";
next;
input @checkcharid;
set @copyman,1;
mes "下面列出來你懷疑的物品.";
L_32:
querysql "select `id`,`char_id`,`nameid`,`card0`,`card1`,`card2`,`card3`,`amount`,`refine` from `inventory` where `nameid` = '"+@checkitemid+"' order by `id`&`char_id`&`nameid`&`card0`&`card1`&`card2`&`card3`&`amount`&`refine` desc";
mes ""+@copyman+"";
mes "序列號 "+readsql(@copyman,1)+"";
mes "持有角色ID "+readsql(@copyman,2)+"";
mes "物品ID "+readsql(@copyman,3)+" ";
mes "位置1 "+readsql(@copyman,4)+"";
mes "位置2 "+readsql(@copyman,5)+"";
mes "位置3 "+readsql(@copyman,6)+"";
mes "位置4 "+readsql(@copyman,7)+"";
mes "持有數量 "+readsql(@copyman,8)+"";
mes "精煉值 "+readsql(@copyman,9)+"";
set @copyman,@copyman+1;
if(@copyman<90)goto L_32;
close;
[ 本帖最後由 喵咪 於 2008-5-25 11:48 AM 編輯 ] |
|