I know what it means when it says type mismatch error, but i checked all my types and they seem alright.....could someone tell me why the code doesnt work:
SCAR Code:
const
howmany=10; //how many of the item you want.
whatyouwannabuy='lobs'; //what IS the item you want?
eaprice=200; //Just wondering, how much would you want to buy each?
Var
Message1:String;
procedure Buyingstatement; //This starts talking using your buying statement.
begin
wait(1000); //Waits a few seconds before typing again.
Message1:=(Message1='buying up to'+ ''+ (howmany)+ '' + (whatyouwannabuy) +'! for' + eaprice + '!');
typesend(Message1);