Search results

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  1. TPGamesNL

    How should I go about allowing numbers to go above 9.22e18?

    Are you using integers or floats?
  2. TPGamesNL

    How should I go about allowing numbers to go above 9.22e18?

    First of all, numbers in Skript are stored as a java double. This means that their maximum value is about 1.8E308, but it has lost precision at that point. This could be an issue, depending on what you want: if players get far in the game, they probably get more clicks at once, so the number...
  3. TPGamesNL

    How should I go about allowing numbers to go above 9.22e18?

    What exactly do you need it for?
  4. TPGamesNL

    Error of Pikachu's Snippets [Spawner]

    You can only change the type of the spawned entity, so you'd have to use DROPPED_ITEM for the entity type. Then you would need to create a system that turns of all the dropped items into the item you want, you can use SpawnerSpawnEvent for that. PS I recommend using metadata on the spawners to...
  5. TPGamesNL

    Solved Problem with add 1 to {variable}

    Try to delete it once, and see if it works after that.
  6. TPGamesNL

    Solved Problem with add 1 to {variable}

    In that code, the variable {count.player.ampelrennen} is not set, only added to. Do you have code where you set the variable (set {count.player.ampelrennen} to ...)
  7. TPGamesNL

    Error of Pikachu's Snippets [Spawner]

    The snippet is very outdated, try if this works: import: org.bukkit.inventory.meta.BlockStateMeta org.bukkit.entity.EntityType org.bukkit.block.CreatureSpawner org.bukkit.inventory.ItemStack function spawner(entity: string) :: item: set {_enum} to try...
  8. TPGamesNL

    Solved Problem with add 1 to {variable}

    Show the code where you set the variable.
  9. TPGamesNL

    Coronavirus verses Economy

    Wrong section, use general instead
  10. TPGamesNL

    This Skript Crashes my server on reload

    Include the crash log
  11. TPGamesNL

    Solved problem with /skript help

    No problem :)
  12. TPGamesNL

    Solved problem with /skript help

    Use Spigot 1.9.4
  13. TPGamesNL

    Solved problem with /skript help

    What version of 1.9 is the server running on?
  14. TPGamesNL

    Solved problem with /skript help

    And there is the error: [16:27:05 ERROR]: Error occurred while enabling Skript v2.4.1 (Is it up to date?) java.lang.NoSuchMethodError: org.bukkit.inventory.meta.PotionMeta.getBasePotionData()Lorg/bukkit/potion/PotionData; at...
  15. TPGamesNL

    Solved problem with /skript help

    There can also be an error when you start the server
  16. TPGamesNL

    Solved problem with /skript help

    There is an error in console, send it
  17. TPGamesNL

    Solved Help Needed / Error in my skript?

    Where did you read that OP wanted to set all blocks below the player to air?
  18. TPGamesNL

    There's no player in a function event(run cmd by OP?)

    You should probably use visual effects to display particles (if vanilla Skript doesn't provide enough functionality, take a look at skDragon). If all of that doesn't do it for you, you can use this, which essentially gives a player OP, makes them run the command and removes their OP again. You...
  19. TPGamesNL

    There's no player in a function event(run cmd by OP?)

    Ok, so which player should be running the command exactly?
  20. TPGamesNL

    There's no player in a function event(run cmd by OP?)

    What OP do you want it to run?