Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
# Merges "abc" and "xyz" into a single new string "abcxyz"
"abc" "xyz" concat trace
- Can someone explain to me why this only displays the popuptext "interval: 10":
currentcoords "Amnt: 1000" setpopuptext
currentcoords "Interval: 10" setpopuptext
"Amnt: 1000" "Interval: 10" concat trace
- and why the copy-pasted string shows up as "amt 0 interval 0"
"Amt: " <-Amt concat "
" concat
"Interval: " <-Delay 30.00 div 2 Round concat concat SetPopuptext
- and when I add the numbers to the string, it always adds a tens place
"Amt: 100 " <-Amt concat "
" concat
"Interval: 10 " <-Delay 30.00 div 2 Round concat concat SetPopuptext