Jump to content

Rudy.cz

YLANDS TEAM
  • Content Count

    69
  • Joined

  • Last visited

Everything posted by Rudy.cz

  1. Rudy.cz

    New version should have the same GUID?

    It can be fixed, see my post above
  2. Rudy.cz

    New version should have the same GUID?

    Luckily there is workaround: A new public console command "/changegameid <ID>" with asset id (number of asset in workshop) can be used. (Example: Tutorial has asset id 585: https://workshop.ylands.com/asset/585 ) You can change asset id only in editor and only for scenarios. You can change asset id only of your local games (not the one downloaded from the workshop) You can change asset id to the target one only if you are the one who uploaded target asset id. (so noone can change asset id to be same as our games) You should get proper message if you use non existing asset id. https://community.bistudio.com/wiki/Ylands_Change_Game_ID
  3. Rudy.cz

    Equiping to hotbar

    Hotbar assign actually works in same manner as in game. If you pick-up something, it goes to first free hotbar slot automatically - same applies for items spawned trough script. Equip adds functionality that it will equip armor pieces to respective body slots or will assign item to "active hand slot" (Hot bar slot 0). Vice versa - get active item returns item currently held in "0 slot".
  4. Rudy.cz

    Ylands Boss Script Fight Test

    This is beautiful. We hope that with addition of dynamic objects + instructions, things like this will be easier to create
  5. Rudy.cz

    New version should have the same GUID?

    This means that exported game has to be exported from same source file - each Game project (scenario) has unique internal GAME ID which is used to identify that game. This one is there to prevent stealing Workshop projects. GAME ID changes each time you do "Save As" in editor.
  6. Rudy.cz

    modify the duration of the text (npc)

    We will put this on our backlog. It will be ideal as optional parameter of this instruction, when optional parameters will be implemented (nothing confirmed yet) We will fix this.
  7. Rudy.cz

    Ice

    Unfortunately it is one of the victims of big renderer optimization update in 0.11 and it is a matter of technical limitation in Unity
  8. Rudy.cz

    modify the duration of the text (npc)

    The show bubble duration is calculated automatically from the length of the displayed text, so you don't have to worry about it
  9. Rudy.cz

    Raycast Lighting

    You mean that sources like lights, crystals or spotlights (etc.) do not cast shadows? Unfortunately these do not do that due to the technical limitations and performance reasons. Only light casting shadow is the sun.
  10. Rudy.cz

    Editor Script Updates.

    Yep, no slacking here at Bohemia :-D
  11. Rudy.cz

    Editor Script Updates.

    It was blocking also the script instruction, but we will change it according to your feedback
  12. Rudy.cz

    Editor Script Updates.

    Hello. Thank for suggestion. In scripting WIKI we have added to each script tile a version when it was updated, so it is now possible to list what has changed each update. There are already things which are being implemented along the 0.12 update at the moment, so it also some kind of sneak peek You can have look here: https://community.bistudio.com/wiki/Category:Updates
  13. Rudy.cz

    fast time trigger__resource usage

    Everything is of course up for debate, so maybe some kind of "lerp" function which will interpolate between two values over time, could be of use here. These thing will have to be implemented with multiplayer optimizations in mind (server performance, client prediction, lags etc...) which is of course not trivial task.
  14. Rudy.cz

    Server Admin Storage

    It works, just "Activate on" has to be set to "End"
  15. Rudy.cz

    Server Admin Storage

    Or you can setup a Listener to wait for Unlock action on specific chest and and lock it immediately again if the player will not have the item.
  16. Rudy.cz

    Fire & Catapult Fire Listen Event

    We are currently improving Event Listener so there is a good chance to have "On Melee Attack" "On Ranged Attack" event in 0.12
  17. Rudy.cz

    Fire & Catapult Fire Listen Event

    You can use listener to listen for damage on any entity. And then check if active item of triggerer was firearm.
  18. Rudy.cz

    fast time trigger__resource usage

    Unfortunately yes. Time triggers like this create excessive network traffic and are unacceptable for serious multiplayer games What we are planning is to make possible to set entities to "dynamic" whose could be then be "animated" by using special instructions (i.e move in Y axis 10 meters in 10 seconds). When this will be implemented, we will probably lock the time trigger minimum to something higher, ,so it wont be possible to use it for animations. This will has to be done due to the technical limitations
  19. Rudy.cz

    Server Admin Storage

    I think what will interest you are these character instructions: Active item Inventory Equipment You can use them to check item in players hand, equipment or in inventory. Example how this could work:
  20. Rudy.cz

    Doubt with list of online players

    I think that the most effective way would be to use FOR EACH (wiki coming soon) loop TIP: to create list with lines, use [NL] string after each name (it will start new line)
  21. Rudy.cz

    Incorrect error with despawn entity [Solved]

    Everything is correct in this script and the trigger Restock TZ worked for me. Is there a way to reproduce this? Note: Also I have noticed that you have 2 Triggers with same script, it is more effective to create one Custom instruction with same functionality in Global storage and call it from each trigger.
  22. Rudy.cz

    Hit without hurt

    1) That wouldn't be possible unfortunately, Arrays weren't designed that way, you will have to use Entity Label 2) We are currently working on this!
  23. Rudy.cz

    Labels Vs Arrays?

    Labels have the advantage that you can use them as trigger object or target in Trigger Zones and Listeners.
  24. Rudy.cz

    Hit without hurt

    Put all players in a label (i.e On Spawn) and then setup listener like this.
  25. Rudy.cz

    Hit without hurt

    It is possible to track On Damage event on players using Event Listener. So you can revert the damage and store some kind of "hit count" variable in a Entity storage attached to each player.
×