Recent content by AFRICA1155

  • 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 comminuty!

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

  1. AFRICA1155

    Custom Biome IDs

    Ah, alright, I see. No problem! Thanks a lot anyways, I wasn't sure if this was possible yet and never saw this discussed here, so at least I have some closure now.
  2. AFRICA1155

    Custom Mobspawning

    First of all I'd add another chance condition before running the dices to select which kind of mob should be spawned. Having percentages like 80% is a very high number that can make regular mobs rarer to spawn than your custom mobs. Second of all don't use if "%entity%" is "creeper": but use...
  3. AFRICA1155

    Custom Biome IDs

    Thanks for suggesting this. And although I don't know much about Skript Reflect, this is one the methods I had already tried and it just prints 'biomes.custom'. I'm currently trying to find a method to be able to differentiate between custom biomes and get the value that gets shown when you...
  4. AFRICA1155

    Help optimizing my skript, for mount.

    Hey, no problem, I'm glad you got the problem sorted out! If you need any further help you can always ask me at anytime. :) But to answer your question about the underscore let me briefly try to explain local variables, since they're a very important kind of variable to understand and can make...
  5. AFRICA1155

    Help optimizing my skript, for mount.

    No problem, have you taken a look at this location? There's a great chance that the y-coordinate '149' is likely not in the void. But at y:149 Coordinates are listed in the order: X, Y, Z. So there might be a chance that this was an issue. Another problem I've had myself, is that setting a...
  6. AFRICA1155

    Rounding just fails.

    Thanks for sending the full code, buddy. I've taken a look at it and tested it out myself. And saw that the problem likely lies here. So these are the 2 problems that are likely to be present here. You can compare 2 objects but only under the condition that the values you compare are both the...
  7. AFRICA1155

    Help optimizing my skript, for mount.

    Maybe instead you could do something like: make player dismount their vehicle I personally don't like seeing commands in the console of unimportant stuff executed by skript, it just helps overall keeping things a bit cleaner. Aside from that, I don't know how you could make it much more...
  8. AFRICA1155

    Rounding just fails.

    First off, check if these variables are actually set. If it returns none then it's because the variable probably doesn't have any value (= it isn't set) You can't use local variables, if you haven't set it yet. Local variables are only variables that exist and must be set during one instance...
  9. AFRICA1155

    Custom Biome IDs

    Hey guys, I'm can't find a way atm to extract custom non-villa biome IDs out of skript. Every time I try to do it, it just returns something along the lines of 'biomes.custom'. I'd like to be able to do this, because it allows a bit of interaction between certain kits I made on my server and the...