here is what im using for my current auto merchanter.
SCAR Code:
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^//
///$$$---**<><>MERCHANT MASTER<><>**---$$$////
/////-----/////-----/////-----/////-----/////
//-----------------------------------------\\
//----^^^^----^^^^By Shinyrange^^^^----^^^^--
//SETUP-SETUP-SETUP-SETUP-SETUP-SETUP-SETUP\\
//:::First, Under the const, fill up the info. (lines16,17, and 18.)
//::::::::::::::::Then Find a merchant spot:://
// AND GO! \\\\\\\\
program MerchantMaster;
{.Include SRL/SRL.scar}
const
howmany=; //how many of the item you want.
whatyouwannabuy=''; //what IS the item you want?
eaprice=; //Just wondering, how much would you want to buy each?
Var
Message1:String;
procedure Buyingstatement; //This starts talking using your buying statement.
begin
wait(0); //Waits a few seconds before typing again.
Message1:=(Message1='buying up to' + howmany + whatyouwannabuy + '! for' + eaprice + '!'; //This actually types the statement
typesend(Message1);
end;
begin ///////////////////////////////////
repeat //////{ Rinse, Lather, Repeat. }//
buyingstatement; ///////////////////////////////////
until(false) ////////////////////////////////////
end. ////////////////////////////////////
///{^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^}\\\
////|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||\\\\
//////////////////////All of the above was just the statements.\\\\\\\
/////////////////////////|||||||||||||||||||\\\\\\\\\\\\\\\\\\\\\\\\\\
procedure Gettrade
begin
wait(75)+random(2)+50
AcceptTrade: true;
end;
begin
repeat
Gettrade;
until(false)
end;
what i want it to do is talk about buying or selling the player inputted item. it does that. But now i want it to look for someone who trades you, search for that player, and trade him....but i have NO idea how to do this. Everything else i think i can handle...... thx in advace