im guessing you need extra brackets around the second half or another =
never scripted before, but try
Simba Code:
If GetTextAtEx(124, 393, 10, UpCharsEx, False, False, 0, 10, 0, 810, False, tr_AllChars) = (('Enter the price you wish to sell for: |') or ('Enter the price you wish to buy for: |')) then
begin
SendKeys(FloatToStr(round(decimal)) + chr(13), 200);
Wait(500 + Random(500));
or
Simba Code:
If GetTextAtEx(124, 393, 10, UpCharsEx, False, False, 0, 10, 0, 810, False, tr_AllChars) = ('Enter the price you wish to sell for: |') or GetTextAtEx(124, 393, 10, UpCharsEx, False, False, 0, 10, 0, 810, False, tr_AllChars) = ('Enter the price you wish to buy for: |') then
begin
SendKeys(FloatToStr(round(decimal)) + chr(13), 200);
Wait(500 + Random(500));
E: