PureBytes Links
Trading Reference Links
|
You can use the hashnums dll or the global variables Dll Like so
DefineDLLFunc:"c\hashnums\hashnums.dll",INT,"putAt",LPSTR,LPSTR,FLOAT;
DefineDLLFunc:"c\hashnums\hashnums.dll",FLOAT,"getAt",LPSTR,LPSTR;
PutAt("Charlie","VarA",VarA);
PutAt("Charlie","VarB",VarB);
IncludeSystem:"Charlie's Break";
Then inside Charlie's Break System
VarA=getAt("Charlie",VarA);
VarB=getAt("Charlie",VarB);
|