THE FORUM IS IN READ-ONLY MODE
This forum is in read-only mode. The new forum is live at https://discourse.openbullet.dev and registrations are open!
Accessing a parsed variable in the scope of BEGIN SCRIPT
-
example
#num PARSE "<SOURCE>" LR "left'" "'right" -> VAR "num"
BEGIN SCRIPT JavaScript
num = <num>;
newNum = num*69;END SCRIPT -> VARS "newNum"
Is something like this possible?
-
@donatello Yes it's possible just delete "< and >", also you can delete the whole first line after BEIGIN SCRIPT
#num PARSE "<SOURCE2>" LR "" "" -> VAR "num" BEGIN SCRIPT JavaScript newNum = num*69; END SCRIPT -> VARS "newNum"
-
omg ty king I didn't think it would be that seamless