基本信息
源码名称:圣域之战C++(动态字幕输出)
源码大小:0.04M
文件格式:.cpp
开发语言:C/C++
更新时间:2018-10-05
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 4 元 
   源码介绍


#include <cstdio>
#include <iostream>
#include <time.h>
#include <windows.h>
#include <cmath>
using namespace std; struct player { int Attack, Defence, HP, MP, MaxHP, MaxMP, Money; int SmallHP, MiddleHP, LargeHP, SmallMP, MiddleMP, LargeMP; int SmallAttack, MiddleAttack, LargeAttack, SuperAttack, HuluAttack; int SKill1Level, SKill2Level, SKill3Level, Level, Experience; int PetKind, PetLevel; int Vocation, OwnSkill, OwnSkillLevel; string UserName, OwnSkillName; } player1; bool life = 1, ForestOpen, EatingGet, WorkOpen, Special, xOpen; int LevelMost = 10, Mission1Get; int qilins, suannis, taoties, bixis, pixius; bool qilin = false, suanni = false, taotie = false, bixi = false, pixiu = false; string MonsterName[20] = { " ", "小狮子", "中狮子", "大狮子", "神圣狮子", "神圣狮子王", "小石怪", "中石怪", "大石怪", "神圣石怪", "神圣石怪王", "混沌魔王" }; int MonsterAttack[20] = { 0, 2, 5, 10, 20, 50, 5, 10, 20, 50, 100, 500 }; int MonsterDefence[20] = { 0, 0, 3, 5, 10, 20, 3, 5, 10, 20, 50, 300 }; int MonsterHP[20] = { 0, 10, 20, 50, 100, 500, 20, 50, 100, 500, 1000, 5000 }; int LevelUp[50] = { 0, 10, 20, 50, 200, 500, 3000, 9000, 13000, 19000, 30000, 50000, 60000, 70000, 90000, 100000, 120000, 140000, 150000, 170000, 200000, 220000, 222222, 233333, 240000, 250000, 270000, 280000, 300000, 350000, 400000 }; string PassWord = "guaner666"; void Slowsay( string a )
{
	int l = a.size(); for ( int i = 0; i < l; i   )
	{
		cout << a[i]; Sleep( 30 );
	}
	printf( "\n" );
}