⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chat-usercount.pl

📁 java开发的聊天室
💻 PL
字号:
sub usercount
{
	$name=$_[0];
	$tempcount=0;
	open (CHECKPROFILE, "$memberspath/$name$extcount");
	@profile = <CHECKPROFILE>;
	close (CHECKPROFILE);
	@profilestats = split (/|/, $profile[0]);

	if ($profilestats[10]<$level_high)
	{$tempcount=int($profilestats[4]*$logincishu/100+$profilestats[5]*$shijianfu/100+$profilestats[6]*$saycishu/100)-$profilestats[7]*$kickfu-$profilestats[8]*$privatefu;}
	else
	{$tempcount=int($profilestats[4]*$logincishu/100+$profilestats[5]*$shijianfu/100+$profilestats[6]*$saycishu/100);}

	if ($tempcount<0)
	{return(0);}
	else {return($tempcount);}
}
sub userstatus
{
	$name=$_[0];
	$tempcount=0;
	open (CHECKPROFILE, "$memberspath/$name.txt");
	@profile = <CHECKPROFILE>;
	close (CHECKPROFILE);
	@profilestats = split (/|/, $profile[0]);
	$tempcount=$profilestats[3];
	return($tempcount);
}
1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -