#how to mention a variable at placeholder
1 messages · Page 1 of 1 (latest)
btw the first part "set {_miembro} to placeholder "parties_members_1" from player" works and gives me the player name
This script is to get the life of player 1 of the party
You need to incase the variable with %
For example
set {_miembro} to "Something"
set {_result} to "This+{_miembro}"
# The result wont be "This+Something" it will be "This+{_miembro}"
set {_result} to "This+%{_miembro}%"
# This will be "This+Something"
omg i love u thanks! ❤️