You cant translate strings into variable names in DBP (it'd be really cool if you could though!)
Anyway this:
Black=0
Blue=rgb(0,0,255)
White=rgb(255,255,255)
ColorVariable$="Blue"
ink ColorVariable$,0
will not work. You have to do something like this:
Black=0
Blue=rgb(0,0,255)
White=rgb(255,255,255)
ColorVariable$="Blue"
if ColorVariable$="Blue"
ink Blue,0
endif
if ColorVariable$="White"
ink White,0
endif
if ColorVariable$="Black"
ink Black,0
endif
or maybe even this:
Black=0
Blue=rgb(0,0,255)
White=rgb(255,255,255)
ColorVariable$="Blue"
if ColorVariable$="Blue"
Color=Blue
endif
if ColorVariable$="White"
Color=White
endif
if ColorVariable$="Black"
Color=Black
endif
ink Color,0
Guns, cinematics, stealth, items and more!