Jump to content

Igor Q.

Creator
  • Content Count

    712
  • Joined

  • Last visited

Everything posted by Igor Q.

  1. Igor Q.

    Testing multiplayer games

    Yeah, at the given moment the editor is pretty limited. If you want help testing some stuff I'd be happy to help. In the meanwhile if you are testing triggers with entities just set it so that the entity you create is called "Player" and each time a trigger is run recall the entity name "Player".
  2. Igor Q.

    Detecting throwing or holding

    I tried using the event listener on "Ignite" but for some reason it did not produce consistent results. What did you use?
  3. Igor Q.

    Detecting throwing or holding

    Okay I can't seem to recreate my trigger from before but this following code should be good enough for all intents and purposes. 1) Create a Entity Label and set it to contain a Grenade. 2) Create a Entity Template and set it to contain the same grenade. 3) In your Entity Label script On Entity Removed Entity Spawn Entity Template the system registers that when your grenade gets removed from the game this event triggers. The game "deletes" the grenade...
  4. Igor Q.

    Detecting throwing or holding

    Check post below.
  5. Hi Im right now currently working on a map and am trying to figure out how to add these functions using visual script. 1) Assign team/role based on interaction/trigger. (This also applies to spawned objects such as furniture and mobs) 2) Create an attack move function that I can use with mobs. (My current idea is the ability to "summon" a mob that will attack move to an enemy player/mob) 3) Create camera effects for specific players in a...
  6. Here are a list of issues I have with the game, with degree of severity. High Severity Issues: 1) Lack of Editor Tools. There are very few triggers/commands we can use in the editor. If I cannot create something as simple as a Battle Royal game in Ylands, this game is doomed. A good example of what a strong editor can do is Warcraft 3. This is critical for the games success. 2) Crafting Recipes are not fully unlocked/visible in multiplayer mode, which means a...
  7. I came back after hiatus and am very happy to see the editor got a rehaul aswell as combat! One small thing I dislike about the new combat system is the attack animations are too slow which makes it difficult to attack running enemies (I miss dying to leopards I accidentally grabbed aggro. It made me more cautious when exploring the world). I hope the multiplayer lobby is added soon because it would really help. I hope the visual script gets more tools... I...
  8. Igor Q.

    Password to open chest, how can it be done?

    I would have made the code in a different way :V You can set up "Enable interaction" with an object, in this case opening a dialogue You can set up 9 options (numbers 1 to 9) And set up the string for the dialogue prompt to be the inputted code. If String = Code, then the chest will open.
  9. Hi. I want to create a trigger where when a person equips a map, automatically an arrow spawns above them pointing to the way point they need to go to. (The reason being that they cannot equip both a map and a weapon at the same time being quite important) My trigger currently uses the Event: On Game Start Repeat: 1 Time (It's a loop function) IF: GET ACTIVE ITEM character "ItemID" Then: Spawn Entity Arrow Sign However this trigger doesn't...
  10. Igor Q.

    Trying to create specific triggers with items.

    The function DOT A B is a dot product for vectors. It basically multiplies each component separately. Ex: Dot (1,2,3) (1,2,3) = (1,4,9) or Dot (1,1,1) (1,2,3) = (1,2,3) It was the only way I could convert the vector into a savable variable. So I could store those values for computing the angles/distance.
  11. Igor Q.

    Trying to create specific triggers with items.

    Alright I was able to figure out this god forsaken trigger that took me so long.
  12. Igor Q.

    Trying to create specific triggers with items.

    Hey again! I was able to successfully make the trigger! However when I try to orient my arrow to point to somewhere I can't get it to work. Currently I'm trying to make it so that each time it spawns it "points" to a treasure chest. Problem is, I have tried several functions and none of them have worked. I've tried "Aim to entity", as well as trying to "Set Orientation" by calculating the angle using Sin and Cos functions however the "Get X vector" function and...
×