Announcement

Collapse
No announcement yet.

Strings and Floats

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Strings and Floats

    I am using the command:

    Level.GetLocalPlayerController().ClientMessage();

    to display a countdown for my random explosions 2! but i can't seem to find what symbol/command is needed to combine the Float variable "Count" and the string " UNTIL RANDOM EXPLOSION!".

    help in doing this is greatly appreciated!:up:

    #2
    String operators' parameters have the modifier "coerce", which means whatever you pass, it will automatically be typecasted to string:
    Code:
    Count $ " UNTIL RANDOM EXPLOSION!"
    Of course display strings should be stored in localized variables instead of hard-coded string constants.

    Comment


      #3
      thanx! look out for Random Explosions 2! :P

      Comment

      Working...
      X