#how to mention a variable at placeholder

1 messages · Page 1 of 1 (latest)

stable prawn
#

it works but it doenst detect the {miembro} variable

it gives me "otherplayer_health_{_miembro}"

#

btw the first part "set {_miembro} to placeholder "parties_members_1" from player" works and gives me the player name

stable prawn
#

This script is to get the life of player 1 of the party

cosmic iris
#

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"