04.04.2010, 16:53
Yes. You will on line number 118 find this line
format(string,sizeof(string),"You have succesfully bought %s! This business pays %i dollars per 10 minutes",bizname,cash);
Which makes the text. %s is the name and %i is the payment per 10 minutes. Write it as you wish but if you make %i come before %s you will need to set "cash" on "bizname"'s spot and "bizname" on "cash" spot or it will malfunction and probaly give errors
Edit: New version! Check first post
format(string,sizeof(string),"You have succesfully bought %s! This business pays %i dollars per 10 minutes",bizname,cash);
Which makes the text. %s is the name and %i is the payment per 10 minutes. Write it as you wish but if you make %i come before %s you will need to set "cash" on "bizname"'s spot and "bizname" on "cash" spot or it will malfunction and probaly give errors
Edit: New version! Check first post