Commit 4a7a4578 authored by Nemo Ma's avatar Nemo Ma

additional file RULESET

parent 0f20b88a
<?php
define('CURSCRIPT', 'valid');
require_once './include/common.inc.php';
if(!$cuser||!$cpass) { gexit($_ERROR['no_login'],__file__,__line__); }
if($gamestate < 20) { gexit($_ERROR['no_start'],__file__,__line__); }
if($gamestate >= 30) { gexit($_ERROR['valid_stop'],__file__,__line__); }
$result = $db->query("SELECT * FROM {$tablepre}users WHERE username='$cuser'");
if(!$db->num_rows($result)) { gexit($_ERROR['login_check'],__file__,__line__); }
$udata = $db->fetch_array($result);
if($udata['password'] != $cpass) { gexit($_ERROR['wrong_pw'], __file__, __line__); }
if($udata['groupid'] <= 0) { gexit($_ERROR['user_ban'], __file__, __line__); }
if($mode == 'enter') {
if($iplimit) {
$result = $db->query("SELECT * FROM {$tablepre}users AS u, {$tablepre}players AS p WHERE u.ip='{$udata['ip']}' AND ( u.username=p.name AND p.type=0 AND p.hp>0)");
if($db->num_rows($result) >= $iplimit) { gexit($_ERROR['ip_limit'],__file__,__line__); }
}
$motto = addslashes($motto);
$killmsg= addslashes($killmsg);
$lastword = addslashes($lastword);
$db->query("UPDATE {$tablepre}users SET gender='$gender', icon='$icon', motto='$motto', killmsg='$killmsg', lastword='$lastword' WHERE username='".$udata['username']."'" );
if($validnum >= $validlimit) {
gexit($_ERROR['player_limit'],__file__, __line__);
}
$result = $db->query("SELECT * FROM {$tablepre}players WHERE name = '$cuser' AND type = 0");
if($db->num_rows($result)) {
gexit($_ERROR['player_exist'], __file__, __line__);
}
$validnum++;
$alivenum++;
$name = $cuser;
$pass = $cpass;
$gd = $gender;
$type = 0;
$endtime = $now;
$sNo = $validnum;
$hp = $mhp = $hplimit;
$sp = $msp = $splimit;
$rand = rand(0,15);
$att = 95 + $rand;
$def = 105 - $rand;
$pls = 0;
$killnum = 0;
$lvl = 0;
$exp = $areanum * 10;
$money = 200;
$rage = 0;
$pose = 0;
$tactic = 0;
$icon = $icon ? $icon : rand(1,$iconlimit);
$club = makeclub();
$arb = $gd == 'm' ? '军服' : '道服';
$arbk = 'DB'; $arbe = 5; $arbs = 30;
$arh = $ara = $arf = $art = '';
$arhk = $arak = $arfk = $artk = '';
$arhe = $arae = $arfe = $arte = 0;
$arhs = $aras = $arfs = $arts = 0;
for ($i=0; $i<6; $i++){$itm[$i] = $itmk[$i] = $itmsk[$i] = ''; $itme[$i] = $itms[$i] = 0;}
$itm[1] = '面包'; $itmk[1] = 'HH'; $itme[1] = 100; $itms[1] = 30;
$itm[2] = '矿泉水'; $itmk[2] = 'HS'; $itme[2] = 100; $itms[2] = 30;
$weplist = openfile(config('stwep',$gamecfg));
do {
$index = rand(1,count($weplist)-1);
list($wep,$wepk,$wepe,$weps) = explode(",",$weplist[$index]);
} while(!$wepk);
$stitemlist = openfile(config('stitem',$gamecfg));
do {
$index = rand(1,count($stitemlist)-1);
list($itm[3],$itmk[3],$itme[3],$itms[3]) = explode(",",$stitemlist[$index]);
} while(!$itmk[3]);
do {
$index = rand(1,count($stitemlist)-1);
list($itm[4],$itmk[4],$itme[4],$itms[4]) = explode(",",$stitemlist[$index]);
} while(!$itmk[4] || ($itmk[3] == $itmk[4]));
if(strpos($wepk,'WG') === 0){
$itm[3] = '子弹'; $itmk[3] = 'GB'; $itme[3] = 1; $itms[3] = 12;
}
$state = 0;
$bid = 0;
$inf = $teamID = $teamPass = '';
$db->query("INSERT INTO {$tablepre}players (name,pass,type,endtime,gd,sNo,icon,club,hp,mhp,sp,msp,att,def,pls,lvl,`exp`,money,bid,inf,rage,pose,tactic,killnum,state,wp,wk,wg,wc,wd,teamID,teamPass,wep,wepk,wepe,weps,arb,arbk,arbe,arbs,arh,arhk,arhe,arhs,ara,arak,arae,aras,arf,arfk,arfe,arfs,art,artk,arte,arts,itm0,itmk0,itme0,itms0,itm1,itmk1,itme1,itms1,itm2,itmk2,itme2,itms2,itm3,itmk3,itme3,itms3,itm4,itmk4,itme4,itms4,itm5,itmk5,itme5,itms5) VALUES ('$name','$pass','$type','$endtime','$gd','$sNo','$icon','$club','$hp','$mhp','$sp','$msp','$att','$def','$pls','$lvl','$exp','$money','$bid','$inf','$rage','$pose','$tactic','$state','$killnum','$wp','$wk','$wg','$wc','$wd','$teamID','$teamPass','$wep','$wepk','$wepe','$weps','$arb','$arbk','$arbe','$arbs','$arh','$arhk','$arhe','$arhs','$ara','$arak','$arae','$aras','$arf','$arfk','$arfe','$arfs','$art','$artk','$arte','$arts','$itm[0]','$itmk[0]','$itme[0]','$itms[0]','$itm[1]','$itmk[1]','$itme[1]','$itms[1]','$itm[2]','$itmk[2]','$itme[2]','$itms[2]','$itm[3]','$itmk[3]','$itme[3]','$itms[3]','$itm[4]','$itmk[4]','$itme[4]','$itms[4]','$itm[5]','$itmk[5]','$itme[5]','$itms[5]')");
$db->query("UPDATE {$tablepre}users SET lastgame='$gamenum' WHERE username='$name'");
addnews($now,'newpc',$name,"$sexinfo[$gd] $sNo 号",$ip);
$gamestate = $validnum < $validlimit ? 20 : 30;
save_gameinfo();
include template('validover');
} elseif($mode == 'notice') {
include template('notice');
} else {
extract($udata);
$result = $db->query("SELECT * FROM {$tablepre}players WHERE name = '$cuser' AND type = 0");
if($db->num_rows($result)) {
header("Location: game.php");exit();
}
if($validnum >= $validlimit) {
gexit($_ERROR['player_limit'],__file__,__line__);
}
$iconarray = array();
for($n = 0; $n <= $iconlimit; $n++) {
if($icon == $n) {
$iconarray[] = '<OPTION value='.$n.' selected>'.$n.'</OPTION>';
} else {
$iconarray[] = '<OPTION value='.$n.' >'.$n.'</OPTION>';
}
}
include template('valid');
}
function makeclub() {
global $wp,$wk,$wg,$wc,$wd,$wf,$money,$mhp,$msp;
$wp = $wk = $wg = $wc = $wd = $wf = 0;
$dice = rand(0,149);
if($dice < 15) {$club = 1;$wp = 25;}//殴25
elseif($dice < 30) {$club = 2;$wk = 25;}//斩25
elseif($dice < 45) {$club = 3;$wc = 25;}//投25
elseif($dice < 60) {$club = 4;$wg = 25;}//射25
elseif($dice < 75) {$club = 5;$wd = 25;}//爆25
elseif($dice < 80) {$club = 6;}//移动消耗减
elseif($dice < 85) {$club = 7;}//P(HACK)=1
elseif($dice < 90) {$club = 8;}//查毒可
elseif($dice < 115) {$club = 9;$wf = 25;}//会心率上升,灵25
elseif($dice < 120) {$club = 10;}//探索减
elseif($dice < 125) {$club = 11;$money = 5000;}//出击钱数5000
elseif($dice < 135) {$club = 12;$wp = $wk = $wg = $wc = $wd = $wf = 10;}//全熟练10
elseif($dice < 145) {$club = 13;$mhp = $mhp + 100;}//生命上限提高100
elseif($dice < 150) {$club = 14;$msp = $msp + 150;}//体力上限提高150
else {$club = makeclub();}
return $club;
}
?>
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment