concatenate variables

Sefiros

Dedicated Member
Dedicated Member
Mar 22, 2011
14
0
27
Hello to all, i want "concatenate" 2 variables into 1, but i dont know i can do this, me exemple is in VB o PHP:

$Var2 = "Hello"
$Var3 = "dont touch"

$Var1 = $Var2.$Var3

i want $Var1 = "Hellodont touch"

in Mir3 how i can do this?

Mov A1 %A2.%A3

this dont works XD.

i try to use INC too but is for numerics only :/
 

nicofortune

LOMCN Veteran
Veteran
Aug 13, 2009
340
1
45
For example

mov USERTITLE Ascension_Apprentice
formatstr "'%s','%s'" %USERNAME,%USERTITLE
mov A8 %A9
FormatStr "where FLD_CHARACTER='%s'" %USERNAME
actcmd WRITESQL "TBL_USERTITLE" "FLD_CHARACTER,FLD_USERTITLE" %A8 %A9
 
Upvote 0