Solved UUID of victm returning <none>

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Jordan

Member
Jan 25, 2017
190
12
18
Scotland
So i can't seem to get uuid of victim to return anything.

code_language.skript:
on damage:
    broadcast "1. %victim%"
    broacast "2. %uuid of victim%
    set {_temp} to victim
    broadcast "test. %uuid of {_temp}%"

All of them return <none> apart from the victim which will just return the entity type

I'm using umbaska 3 and the latest Bensku's fork - dev23
 
On damage applies to all entities. Check it's a player then try.
 
Try and use something like...
code_language.skript:
set {_uuid} to uuid of victim
broadcast "test. %uuid of {_temp}%
 
Try and use something like...
code_language.skript:
set {_uuid} to uuid of victim
broadcast "test. %uuid of {_temp}%
Fixed:
Code:
set {_uuid} to uuid of victim
broadcast "test. %{_uuid}%
 
Fixed:
Code:
set {_uuid} to uuid of victim
broadcast "test. %{_uuid}%
Yeh that returns <none>

Is uuid of entity in umbaska 3? or is it only in earlier versions as i only have umbaska 3 installed.
 
Yeh that returns <none>

Is uuid of entity in umbaska 3? or is it only in earlier versions as i only have umbaska 3 installed.
UUID of entity does not exist in Umbaska 3 or any Modules for it. Retro Module coming soon will have it.
 
UUID of entity does not exist in Umbaska 3 or any Modules for it. Retro Module coming soon will have it.
That'll be the problem then haha, alright i'll wait around for it, do you happen to have a link to earlier versions of umbaska?
 
The UUID expression only supports player entities, you'll have to use either Umbaska 2, Skellett or RandomSK (with the special source fix if you want it to work in the latest version)
 
The UUID expression only supports player entities, you'll have to use either Umbaska 2, Skellett or RandomSK (with the special source fix if you want it to work in the latest version)
I've got skellett, whats the syntax?
 
I've got skellett, whats the syntax?
code_language.skript:
 [skellett] entity (uuid|[universal] unique id) of [entity] %entity%
[entity] %entity%''s entity (uuid|[universal] unique id)
 
Status
Not open for further replies.