mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-27 21:10:54 +00:00
parent
153593b64c
commit
271f9b9ec5
@ -15,5 +15,5 @@ public @interface Command {
|
|||||||
|
|
||||||
String permission() default "";
|
String permission() default "";
|
||||||
|
|
||||||
boolean threading() default false;
|
boolean threading() default false;
|
||||||
}
|
}
|
||||||
|
@ -136,11 +136,9 @@ public final class CommandMap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Invoke execute method for handler.
|
// Invoke execute method for handler.
|
||||||
// Get whether the command starts a thread
|
|
||||||
boolean threading = this.annotations.get(label).threading();
|
boolean threading = this.annotations.get(label).threading();
|
||||||
Runnable runnable = () -> handler.execute(player, args);
|
Runnable runnable = () -> handler.execute(player, args);
|
||||||
if(threading) {
|
if(threading) {
|
||||||
//start thread
|
|
||||||
Thread command = new Thread(runnable);
|
Thread command = new Thread(runnable);
|
||||||
command.start();
|
command.start();
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package emu.grasscutter.command.commands;
|
package emu.grasscutter.command.commands;
|
||||||
|
|
||||||
|
import com.thoughtworks.proxy.toys.nullobject.Null;
|
||||||
import emu.grasscutter.Grasscutter;
|
import emu.grasscutter.Grasscutter;
|
||||||
import emu.grasscutter.command.Command;
|
import emu.grasscutter.command.Command;
|
||||||
import emu.grasscutter.command.CommandHandler;
|
import emu.grasscutter.command.CommandHandler;
|
||||||
@ -21,7 +22,7 @@ public class GiveAllCommand implements CommandHandler {
|
|||||||
int target,amount=99999;
|
int target,amount=99999;
|
||||||
|
|
||||||
switch (args.size()) {
|
switch (args.size()) {
|
||||||
default: // *no args*
|
default: // giveall *no args*
|
||||||
try {
|
try {
|
||||||
target = sender.getUid();
|
target = sender.getUid();
|
||||||
}catch (NullPointerException ignored){
|
}catch (NullPointerException ignored){
|
||||||
@ -37,7 +38,7 @@ public class GiveAllCommand implements CommandHandler {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}catch (NumberFormatException ignored){
|
}catch (NumberFormatException ignored){
|
||||||
CommandHandler.sendMessage(sender, "Invalid player ID.");
|
CommandHandler.sendMessage(sender, "Invalid amount or player ID.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -72,7 +73,7 @@ public class GiveAllCommand implements CommandHandler {
|
|||||||
|
|
||||||
Collection<GenshinItem> genshinItemList =new LinkedList<>();
|
Collection<GenshinItem> genshinItemList =new LinkedList<>();
|
||||||
for (ItemData itemdata: GenshinData.getItemDataMap().values()) {
|
for (ItemData itemdata: GenshinData.getItemDataMap().values()) {
|
||||||
if(itemdata.getId() > 1000 && itemdata.getId() <= 1099) continue;
|
if(itemdata.getId() > 1000 && itemdata.getId() <= 1099)continue;//is avatar
|
||||||
if (itemdata.isEquip()) {
|
if (itemdata.isEquip()) {
|
||||||
for (int i = 0; i < 20; i++) {
|
for (int i = 0; i < 20; i++) {
|
||||||
genshinItemList.add(new GenshinItem(itemdata));
|
genshinItemList.add(new GenshinItem(itemdata));
|
||||||
@ -85,14 +86,22 @@ public class GiveAllCommand implements CommandHandler {
|
|||||||
}
|
}
|
||||||
player.getInventory().addItems(genshinItemList);
|
player.getInventory().addItems(genshinItemList);
|
||||||
|
|
||||||
for(AvatarData avatarData:GenshinData.getAvatarDataMap().values()) {
|
for(AvatarData avatarData:GenshinData.getAvatarDataMap().values())
|
||||||
|
{
|
||||||
|
int ascension;
|
||||||
|
int level = 90;
|
||||||
// Calculate ascension level.
|
// Calculate ascension level.
|
||||||
int ascension = (int) Math.ceil(90 / 10f) - 3;
|
if (level <= 40) {
|
||||||
|
ascension = (int) Math.ceil(90 / 20f);
|
||||||
|
} else {
|
||||||
|
ascension = (int) Math.ceil(90 / 10f) - 3;
|
||||||
|
}
|
||||||
|
|
||||||
GenshinAvatar avatar = new GenshinAvatar(avatarData);
|
GenshinAvatar avatar = new GenshinAvatar(avatarData);
|
||||||
avatar.setLevel(90);
|
avatar.setLevel(level);
|
||||||
avatar.setPromoteLevel(ascension);
|
avatar.setPromoteLevel(ascension);
|
||||||
for (int i = 1;i<=6;i++){
|
for (int i = 1;i<=6;i++){
|
||||||
avatar.getTalentIdList().add((avatar.getAvatarId()-10000000)*10+i);
|
avatar.getTalentIdList().add((avatar.getAvatarId()-10000000)*10+i);//(10000058-10000000)*10+i
|
||||||
}
|
}
|
||||||
// This will handle stats and talents
|
// This will handle stats and talents
|
||||||
avatar.recalcStats();
|
avatar.recalcStats();
|
||||||
|
Loading…
Reference in New Issue
Block a user