really important yeah

fixed the fish
master
Lan 4 years ago
parent dd2ca3ec3f
commit 336379cc22
  1. 12
      Kehyeedra3/Commands/Economy.cs
  2. 4
      Kehyeedra3/Commands/Stuff.cs

@ -193,7 +193,7 @@ namespace Kehyeedra3.Commands
public async Task FishCommand() public async Task FishCommand()
{ {
ulong time = ulong.Parse(DateTime.Now.ToString("yyyyMMddHHmm")); ulong time = ulong.Parse(DateTime.Now.ToString("yyyyMMddHHmm"));
ulong totalXp; ulong totalXp = 0;
ulong xp = 0; ulong xp = 0;
ulong level = 0; ulong level = 0;
ulong lvlXp = 0; ulong lvlXp = 0;
@ -204,7 +204,7 @@ namespace Kehyeedra3.Commands
int SpecialBait = 0; int SpecialBait = 0;
int Lettuce = 0; int Lettuce = 0;
Dictionary<FishSpecies, int[]> inv = new Dictionary<FishSpecies, int[]>(); Dictionary<FishSpecies, int[]> inv = new Dictionary<FishSpecies, int[]>();
Dictionary<Items, int[]> items = new Dictionary<Items, int[]>();
List<Fish> fishes = Fishing.GetFishList(); List<Fish> fishes = Fishing.GetFishList();
using (var Database = new ApplicationDbContextFactory().CreateDbContext()) using (var Database = new ApplicationDbContextFactory().CreateDbContext())
@ -231,8 +231,12 @@ namespace Kehyeedra3.Commands
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\narrrrr-right, ye scurby bastard, I know yer eager t' scour the seven seas but ye needs t' wait till the next minute t' pillage the booty'o'the depths, savvy?"); await Context.Channel.SendMessageAsync($"{Context.User.Mention}\narrrrr-right, ye scurby bastard, I know yer eager t' scour the seven seas but ye needs t' wait till the next minute t' pillage the booty'o'the depths, savvy?");
return; return;
} }
if (guser.GeneralInventory != null || guser.GeneralInventory != "{}") if (guser.GeneralInventory == null)
{ {
guser.GeneralInventory = "{}";
}
Dictionary<Items, int[]> items = new Dictionary<Items, int[]>();
items = guser.GetGenInve(); items = guser.GetGenInve();
int[] subtract = { 0 }; int[] subtract = { 0 };
subtract[0] = -1; subtract[0] = -1;
@ -275,7 +279,7 @@ namespace Kehyeedra3.Commands
} }
guser.SetGenInve(items); guser.SetGenInve(items);
}
level = user.Lvl; level = user.Lvl;
totalXp = user.TXp; totalXp = user.TXp;

@ -42,8 +42,8 @@ namespace Kehyeedra3.Commands
{ {
Random rando = new Random(); Random rando = new Random();
Random rando1 = new Random(); Random rando1 = new Random();
int trapRating0 = rando.Next(0, 101); int trapRating0 = rando.Next(0, 201);
if (trapRating0 == 100) if (trapRating0 > 100 || trapRating0 < 120)
{ {
int trapRating1 = rando1.Next(0, 10001); int trapRating1 = rando1.Next(0, 10001);
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nCongrats king, your boss nuts weigh {trapRating1}g."); await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nCongrats king, your boss nuts weigh {trapRating1}g.");

Loading…
Cancel
Save