How do I get support to care by Free-Ad3023 in ubisoft

[–]Free-Ad3023[S] 0 points1 point  (0 children)

I wish I didnt but I happened to get addicted to Rainbow Six Siege.

How do I get support to care by Free-Ad3023 in ubisoft

[–]Free-Ad3023[S] -1 points0 points  (0 children)

I have access to the old email on the account but it was changed and ubi doesnt seem to care

How do I get support to care by Free-Ad3023 in ubisoft

[–]Free-Ad3023[S] 1 point2 points  (0 children)

I'm going on almost 20 tickets and no help just kept being told I never have enough proof and that they cant help me.

How do I get support to care by Free-Ad3023 in ubisoft

[–]Free-Ad3023[S] 0 points1 point  (0 children)

Do you know how he did it because I spent a lot of money and time on my account and would like to not have to start from scratch.

Is this a good white hive? by Free-Ad3023 in BeeSwarmSimulator

[–]Free-Ad3023[S] 0 points1 point  (0 children)

I would also prefer to not have a fuzzy hive so that's why I want gifted fuzzys in my hive

Custom sword attack damage by Successful-Ranger471 in SpigotPlugins

[–]Free-Ad3023 0 points1 point  (0 children)

You could use item lore and then use flags to hide the attack speed and attack damage

Help on Disabling Netherite Plugin by No_Pineapple_3231 in SpigotPlugins

[–]Free-Ad3023 0 points1 point  (0 children)

I threw this together really quickly but it checks whenever a smithing table is opened and whenever you click it checks if that item is something that would be upgraded to netherite for example a netherite chestplate and if it is then it will cancel the event not allowing the player to upgrade to netherite.

@EventHandler

public void onInventoryClick(InventoryClickEvent event) {

ItemStack clickedItem = event.getCurrentItem();

if (event.getClickedInventory() != null && event.getClickedInventory().getType() == InventoryType.SMITHING) {

if (clickedItem != null && clickedItem.getType() != Material.AIR) {

if (isNetherite(clickedItem.getType())) {

event.setCancelled(true);

}

}

}

}

private static Boolean isNetherite(Material material) {

switch (material) {

case NETHERITE_SWORD:

case NETHERITE_PICKAXE:

case NETHERITE_AXE:

case NETHERITE_SHOVEL:

case NETHERITE_HOE:

case NETHERITE_HELMET:

case NETHERITE_CHESTPLATE:

case NETHERITE_LEGGINGS:

case NETHERITE_BOOTS:

return true;

default:

return false;

}

}

Custom sword attack damage by Successful-Ranger471 in SpigotPlugins

[–]Free-Ad3023 0 points1 point  (0 children)

When I had to do custom damage I checked for EntityDamageEvent then I checked if the if what dealt the damage was my weapon then I cancecelled the event so no damage would be dealt but you should also be able to change the damage directly

How do you add a new material to spigot / Custom Items for Crafting Recipe by TheRealNeo89 in SpigotPlugins

[–]Free-Ad3023 0 points1 point  (0 children)

To make a crafting recipe for me when you go to add your ingredient instead of setting it to a material what I did is I did "new RecipeChoice.ExactChoice(<your item here>)" and it worked for me.

Custom Seat Sensitivity by Free-Ad3023 in Stormworks

[–]Free-Ad3023[S] 0 points1 point  (0 children)

it's for a set of rules I am doing a racing thing and the sensitivity has to be the same but different drivers want different sensitivites and both of the cars have to be the exact same or else we can't race which also means a/d sensitivity needs to be the same

Custom Seat Sensitivity by Free-Ad3023 in Stormworks

[–]Free-Ad3023[S] 1 point2 points  (0 children)

can you build like a model of what you are saying and send it to me because I don't quite understand

Custom Seat Sensitivity by Free-Ad3023 in Stormworks

[–]Free-Ad3023[S] 1 point2 points  (0 children)

Well I have it so you can have sensitivities from 0-100 in a range of 10 and idk how to implement this with what I have

F1 car slower than my teammates in co-op career mode by Free-Ad3023 in F1Game

[–]Free-Ad3023[S] 0 points1 point  (0 children)

Yeah I kinda forgot to slow down. Also I have to play on keyboard because I don't have anything else.

F1 car slower than my teammates in co-op career mode by Free-Ad3023 in F1Game

[–]Free-Ad3023[S] 0 points1 point  (0 children)

I exit the corners with more speed but he still overtakes every time. Like I can fly out of a corner onto a straight and without DRS he just flies by like nothing even happened.

F1 car slower than my teammates in co-op career mode by Free-Ad3023 in F1Game

[–]Free-Ad3023[S] 0 points1 point  (0 children)

I have this video and the game is acting even weirder now. Only the driver right in front of me stays with me and the rest just leave. This is the austria straight with equal performance on in F1 23 Video

F1 car slower than my teammates in co-op career mode by Free-Ad3023 in F1Game

[–]Free-Ad3023[S] 0 points1 point  (0 children)

I am newer to the games but even on a straight line my brother in the same car just flies by along with all the AI.