Only in MAngband_current_back/src/: .ChangeLog.swp
diff -r MAngband_current_back/src/ChangeLog MAngband_current/src/ChangeLog
16a17
>      //// NEVER FINISHED IMPLIMENTING THIS
diff -r MAngband_current_back/src/common/defines.h MAngband_current/src/common/defines.h
724,727c724,725
< /* I still don't know what this does -- it would probably be a good
<  * idea to move this into mangband.cfg.
<  */
< # define RANDART_RARITY		200
---
> /* Normally 200.  This should be changed to a mangband.cfg option. */
> #define RANDART_RARITY		20
Only in MAngband_current_back/src/: lib
Only in MAngband_current/src/: mangband
Only in MAngband_current/src/: mangclient
Only in MAngband_current/src/: mangconsole
Only in MAngband_current/src/: reseting
diff -r MAngband_current_back/src/server/birth.c MAngband_current/src/server/birth.c
722c722
< 	p_ptr->au = gold;
---
> 	p_ptr->au = gold + 400;
diff -r MAngband_current_back/src/server/cmd2.c MAngband_current/src/server/cmd2.c
80c80,84
< 	p_ptr->dun_depth--;
---
> 	if (p_ptr->dun_depth == 10)
> 		p_ptr->dun_depth = 0;
> 	else
> 		p_ptr->dun_depth -= 4;
> 
171c175,178
< 	p_ptr->dun_depth++;
---
> 	if (!p_ptr->dun_depth)
> 		p_ptr->dun_depth = 10;
> 	else
> 		p_ptr->dun_depth += 4;
977a985
> #if 0
987a996
> #endif
diff -r MAngband_current_back/src/server/cmd4.c MAngband_current/src/server/cmd4.c
506c506,507
< 					fprintf(fff, "     Light %s infestation on %d feet, %d minutes. %d\n",
---
> //					fprintf(fff, "     Light %s infestation on %d feet, %d minutes. %d\n",
> 					fprintf(fff, "     Light %s infestation on %d feet, %d minutes.\n",
509,510c510,511
< 							q_ptr->static_timer,
< 							q_ptr->q.infest.num);
---
> 							q_ptr->static_timer);
> //							q_ptr->q.infest.num);
515c516
< 					fprintf(fff, "     %s infestation on %d feet, %d minutes. %d\n",
---
> 					fprintf(fff, "     %s infestation on %d feet, %d minutes.\n",
518,520c519
< 							q_ptr->static_timer,
< 							q_ptr->q.infest.num);
< 
---
> 							q_ptr->static_timer);
525c524
< 					fprintf(fff, "     Serious %s infestation on %d feet, %d minutes. %d\n",
---
> 					fprintf(fff, "     Serious %s infestation on %d feet, %d minutes.\n",
528,529c527
< 							q_ptr->static_timer,
< 							q_ptr->q.infest.num);
---
> 							q_ptr->static_timer);
535c533
< 					fprintf(fff, "     Severe %s infestation on %d feet, %d minutes. %d\n",
---
> 					fprintf(fff, "     Severe %s infestation on %d feet, %d minutes.\n",
538,539c536
< 							q_ptr->static_timer,
< 							q_ptr->q.infest.num);
---
> 							q_ptr->static_timer);
diff -r MAngband_current_back/src/server/cmd5.c MAngband_current/src/server/cmd5.c
403a404
> 
diff -r MAngband_current_back/src/server/dungeon.c MAngband_current/src/server/dungeon.c
1579c1579
< 			regenmana(Ind, (regen_amount * 5) / 3 );
---
> 			regenmana(Ind, (regen_amount * 7) / 3 );
2004a2005,2008
> 		/* Make it something we can get to... */
> 		if (i < 10) i = 10;
> 		else i = (i - 10) - ((i - 10) % 4) + 10;
> 
2081a2086,2089
> 		/* Make it something we can get to... */
> 		if (depth < 10) depth = 10;
> 		else depth = (depth - 10) - ((depth - 10) % 4) + 10;
> 
2351c2359,2360
< 		if (rand_int(100800) < vault_chance) {
---
> 		//if (rand_int(100800) < vault_chance) {
> 		if (rand_int(9080) < vault_chance) {
2376c2385,2386
< 		if (!rand_int(650)) {
---
> 		//if (!rand_int(650)) {
> 		if (!rand_int(250)) {
diff -r MAngband_current_back/src/server/generate.c MAngband_current/src/server/generate.c
3374c3374
< 			if (rand_int(DUN_UNUSUAL) < Depth)
---
> 			if (rand_int(DUN_UNUSUAL/2) < Depth)
diff -r MAngband_current_back/src/server/object2.c MAngband_current/src/server/object2.c
2997c2997
< 
---
> #if 0
3008a3009,3012
> #endif
> 
> 	/* Base chance of being "good" */
> 	f1 = lev + 20;
3009a3014,3021
> 	/* Maximal chance of being "good" */
> 	if (f1 > 75) f1 = 75;
> 
> 	/* Base chance of being "great" */
> 	f2 = f1;
> 
> 	/* Maximal chance of being "great" */
> 	if (f2 > 30) f2 = 30;
diff -r MAngband_current_back/src/server/party.c MAngband_current/src/server/party.c
396d395
< 	s32b modified_level;
397a397
> #if 0
403,407d402
< #if 0
< 		if (p_ptr->conn == NOT_CONNECTED)
< 			continue;
< #endif
< 
422,426d416
< #if 0
< 		if (p_ptr->conn == NOT_CONNECTED)
< 			continue;
< #endif
< 
453a444,493
> 
> 			/* Keep track of experience */
> 			if (new_exp_frac >= 0x10000L)
> 			{
> 				new_exp++;
> 				p_ptr->exp_frac = new_exp_frac - 0x10000L;
> 			}
> 			else
> 			{
> 				p_ptr->exp_frac = new_exp_frac;
> 			}
> 
> 			/* Gain experience */
> 			gain_exp(i, new_exp);
> 		}
> 	}
> #endif
> 	/* Count the number of players */
> 	for (i = 1; i <= NumPlayers; i++)
> 	{
> 		p_ptr = Players[i];
> 
> 		/* Check for his existance in the party */
> 		if (player_in_party(party_id, i) && p_ptr->dun_depth == Depth)
> 		{
> 			num_members++;
> 		}
> 	}
> 
> 	/* Distribute the experience */
> 	for (i = 1; i <= NumPlayers; i++)
> 	{
> 		p_ptr = Players[i];
> 
> 		/* Check for existance in the party */
> 		if (player_in_party(party_id, i) && p_ptr->dun_depth == Depth)
> 		{
> 			/* Calculate this guy's experience */
> 			/* In parties, people get 3/4 XP */
> 			if (num_members > 1) {
> 				new_exp = ((amount * 3) / (p_ptr->lev * 4));
> 				new_exp_frac = ((((amount * 3) % (p_ptr->lev*4)) * 0x10000L) / (p_ptr->lev*4))
> 					+ p_ptr->exp_frac;
> 			}
> 			else {
> 				new_exp = (amount / p_ptr->lev);
> 				new_exp_frac = (((amount % p_ptr->lev) * 0x10000L) / p_ptr->lev)
> 					+ p_ptr->exp_frac;
> 
> 			}
diff -r MAngband_current_back/src/server/xtra2.c MAngband_current/src/server/xtra2.c
1773a1774,1816
> 		/* Mega-hack -- gain a random stat */
> 		switch (randint1(13)) {
> 			case 1:
> 			case 2:
> 				msg_print(Ind, "\377GWow!  You feel very strong.");
> 				inc_stat(Ind, A_STR);
> 				break;
> 			case 3:
> 			case 4:
> 				msg_print(Ind, "\377GWow!  You feel very smart.");
> 				inc_stat(Ind, A_INT);
> 				break;
> 			case 5:
> 			case 6:
> 				msg_print(Ind, "\377GWow!  You feel very wise.");
> 				inc_stat(Ind, A_WIS);
> 				break;
> 			case 7:
> 			case 8:
> 				msg_print(Ind, "\377GWow!  You feel very agile.");
> 				inc_stat(Ind, A_DEX);
> 				break;
> 			case 9:
> 			case 10:
> 				msg_print(Ind, "\377GWow!  You feel very tough.");
> 				inc_stat(Ind, A_CON);
> 				break;
> 			case 11: 
> 			case 12: 
> 				msg_print(Ind, "\377GWow!  You feel very cute.");
> 				inc_stat(Ind, A_CHR);
> 				break;
> 			case 13: 
> 				msg_print(Ind, "\377GWow!  You feel very powerful.");
> 				inc_stat(Ind, A_STR);
> 				inc_stat(Ind, A_INT);
> 				inc_stat(Ind, A_WIS);
> 				inc_stat(Ind, A_DEX);
> 				inc_stat(Ind, A_CON);
> 				inc_stat(Ind, A_CHR);
> 				break;
> 		}
> 
2517a2561
> 	int old_lev, levels_lost, i;
2526a2571
> 
2528a2574,2575
> 
> 	old_lev = p_ptr->lev;
2529a2577,2624
> 	levels_lost = old_lev - p_ptr->lev;
> 
> 	/* Decrease some random stats! */
> 
> 	for (i = 0; i < levels_lost + 1; i++) {
> 		switch (randint1(13)) {
> 			case 1:
> 			case 2:
> 				msg_print(Ind, "\377RYou feel very weak...");
> 				dec_stat(Ind, A_STR, 10, TRUE);
> 				break;
> 			case 3:
> 			case 4:
> 				msg_print(Ind, "\377RYou feel very stupid...");
> 				dec_stat(Ind, A_INT, 10, TRUE);
> 				break;
> 			case 5:
> 			case 6:
> 				msg_print(Ind, "\377RYou feel very foolish...");
> 				dec_stat(Ind, A_WIS, 10, TRUE);
> 				break;
> 
> 			case 7:
> 			case 8:
> 				msg_print(Ind, "\377RYou feel very clumsy...");
> 				dec_stat(Ind, A_DEX, 10, TRUE);
> 				break;
> 			case 9:
> 			case 10:
> 				msg_print(Ind, "\377RYou feel very sickly...");
> 				dec_stat(Ind, A_CON, 10, TRUE);
> 				break;
> 			case 11:
> 			case 12:
> 				msg_print(Ind, "\377RYou feel very ugly...");
> 				dec_stat(Ind, A_CHR, 10, TRUE);
> 				break;
> 			case 13:
> 				msg_print(Ind, "\377RYou feel less powerful...");
> 				dec_stat(Ind, A_STR, 10, TRUE);
> 				dec_stat(Ind, A_INT, 10, TRUE);
> 				dec_stat(Ind, A_WIS, 10, TRUE);
> 				dec_stat(Ind, A_DEX, 10, TRUE);
> 				dec_stat(Ind, A_CON, 10, TRUE);
> 				dec_stat(Ind, A_CHR, 10, TRUE);
> 				break;
> 		}
> 	}
Only in MAngband_current/src/: tags

