[水怪RPG複雜化委員會]天空鬥技場興建計劃啟動
版主: 版主管理群
-
- 星球普通子民
- 文章: 21
- 註冊時間: 2003-12-23 05:25
- 聯繫:
照理說..是不可能打到空殼的..除非每個都設0ilove1291 寫:不知道是不是幻覺連打了4個空的 掉寶率都設99 真是太幸運了
gigaguaze 使出 偷襲 擊中 2004 損傷 1223.5 點。 砍死: 2004 死因: 偷襲(1223.5) 並獲得若干道具:
如果沒得到道具 顯示成 打到空殼沒得到任何東西要怎麼做呢?老師
你可能要檢查一下你這句\r
代碼: 選擇全部
srand((double)microtime()*1000000);
$change = rand(1, 100) ;
$sql = "select count(*) as item_count from phpbb_rpg_items where in_which_store <= 2 and need_level <= $ulv and item_change >= $change";
$result = $db->sql_query($sql);
$row2 = $db->sql_fetchrow($result);
$item_count = $row2['item_count'] - 1;
for ($i = 1; $i <= $row['dead_count']; $i++)
{
$sql = "select item_id, item_name from phpbb_rpg_items where in_which_store <= 2 and need_level <= $ulv and item_change >= $change order by item_id limit " . rand(0, $item_count) . " , 1";
$result = $db->sql_query($sql);
srand((double)microtime()*1000000);
$change = rand(1, 100) ;
這兩句可能佔比較大....我不是老師拉....我是剛學php的迷途小頑童..噎!我本來要去LBHACK的...
ASP盛行較早吧~
php是這幾年才開始的.....
據我所知2000年之前就有人在用FLASH4 + ASP在玩留言板了...
而我最近看到有在專門交 Flash + PHP的書也是在2002年左右.....
那本書真的很棒~ 詳細介紹了各種和PHP連結的方式^^"
php是這幾年才開始的.....
據我所知2000年之前就有人在用FLASH4 + ASP在玩留言板了...
而我最近看到有在專門交 Flash + PHP的書也是在2002年左右.....
那本書真的很棒~ 詳細介紹了各種和PHP連結的方式^^"
Helvetica is a feature-length independent film about typography.
你的http://ilove1291.cjb.net/這個網址的確是死的~ilove1291 寫: 有不少人說進我的站會當掉
請問一下歐 使用 kkman 跟 myie 的人在小毛驢農場當 大概實什麼時候開始的呢?
我使用ie都不當的說 是不是我用了什麼ie專用的語法?
不過小毛驢農場http://ilove1291.no-ip.org/bs/index.html很正常喔~
-
- 竹貓忠實會員
- 文章: 1086
- 註冊時間: 2003-10-28 14:50
http://ilove1291.cjb.net/ 會出現網頁視窗標題“ilove1291”
但是內容顯示
但是內容顯示
http://ilove1291.cjb.net/ 寫:動作已取消
Internet Explorer 無法連結您要求的網頁。網頁可能暫時無法使用。
--------------------------------------------------------------------------------
請嘗試下列:
請按 [重新整理] 按鈕,或者稍後再試一次。
如果以前瀏覽此網頁,但想檢視儲存在電腦的內容,請按 [檔案],然後按 [離線工作]。
如需關於使用 Internet Explorer 離線瀏覽的資訊, 請按 [說明] 功能表,然後按 [內容與索引]。
Internet Explorer
最後由 GeniusKiKi 於 2004-01-19 05:48 編輯,總共編輯了 1 次。
再也不當爛好人...
好人是小白轉型成大白的墊腳石...
好人是小白轉型成大白的墊腳石...
恭請老師參詳dominic2708 寫: 照理說..是不可能打到空殼的..除非每個都設0
你可能要檢查一下
[php]<?php
function UserIsDead($wsql, $wsql2, $uid, $uname, $ulv, $deadtype, $is_npc = false)
{
global $db;
$ret_msg = '';
if ( $is_npc )
{
$sql = "select count(*) as dead_count, sum(rpg_level) as dead_level, sum(rpg_max_hp) as dead_money from phpbb_rpg_npc where rpg_cur_hp <= 0 and $wsql";
$result = $db->sql_query($sql);
if ( $row = $db->sql_fetchrow($result) )
{
if ( $row['dead_count'] > 0 )
{
$sql = "select npc_id from phpbb_rpg_npc where rpg_cur_hp <= 0 and $wsql";
$result = $db->sql_query($sql);
if ( $row2 = $db->sql_fetchrow($result) )
{
$ret_msg = ' 擊敗: ';
do
{
$ret_msg .= ($row2['npc_name'] == '' ? '' . $row2['npc_id'] : $row2['npc_name']) . ' ';
}
while ( $row2 = $db->sql_fetchrow($result) );
$ret_msg .= "關鍵一擊: $deadtype 獲得道具: ";
}
//掉寶率
// $sql = "select count(*) as item_count from phpbb_rpg_items where in_which_store <= 2 and need_level <= $ulv";
// $result = $db->sql_query($sql);
// $row2 = $db->sql_fetchrow($result);
// $item_count = $row2['item_count'] - 1;
// srand((double)microtime()*1000000);
// for ($i = 1; $i <= $row['dead_count']; $i++)
// {
// $sql = "select item_id, item_name from phpbb_rpg_items where in_which_store <= 2 and need_level <= $ulv order by item_id limit " . rand(0, $item_count) . " , 1";
// $result = $db->sql_query($sql);
srand((double)microtime()*1000000);
$change = rand(1, 100) ;
$sql = "select count(*) as item_count from phpbb_rpg_items where need_level <= $ulv and item_change >= $change";
$result = $db->sql_query($sql);
$row2 = $db->sql_fetchrow($result);
$item_count = $row2['item_count'] - 1;
for ($i = 1; $i <= $row['dead_count']; $i++)
{
$sql = "select item_id, item_name from phpbb_rpg_items where need_level <= $ulv and item_change >= $change order by item_id limit " . rand(0, $item_count) . " , 1";
$result = $db->sql_query($sql);
//掉寶率
}
?>[/php]
-
- 星球普通子民
- 文章: 21
- 註冊時間: 2003-12-23 05:25
- 聯繫:
代碼: 選擇全部
}
srand((double)microtime()*1000000);
$change = rand(1, 100) ;
$sql = "select count(*) as item_count from phpbb_rpg_items where in_which_store <= 2 and need_level <= $ulv and item_change >= $change";
$result = $db->sql_query($sql);
$row2 = $db->sql_fetchrow($result);
$item_count = $row2['item_count'] - 1;
for ($i = 1; $i <= $row['dead_count']; $i++)
{
$sql = "select item_id, item_name from phpbb_rpg_items where in_which_store <= 2 and need_level <= $ulv and item_change >= $change order by item_id limit " . rand(0, $item_count) . " , 1";
$result = $db->sql_query($sql);
$row2 = $db->sql_fetchrow($result);
$ret_msg .= $row2['item_name'] . ' ';
$sql = "insert into phpbb_rpg_owns (user_id, item_id) values ($uid, " . $row2['item_id'] . ")";
$db->sql_query($sql);
}
// 超出 50 項,砍掉
$ret_msg .= $row2['item_name'] . ' ';
以下後都沒看到..降子會因此沒寫入到sql唷 ....
也祝ilove1291跟大家還有martinet新年快樂唷