Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. CMD:phelp(playerid, params[]) {
  2. new string[1900];
  3. strcat(string, "You can purchase a property by typing /bprop within 6 meters of the business pickup", 1900 );
  4. strcat(string, "\nlocated at each property.", 1900 );
  5. strcat(string, "\n\nIf you owned a property then you will get profit in a particular time period", 1900 );
  6. strcat(string, "\nand which is going to your bank account.", 1900 );
  7. strcat(string, "\n\nIf a property is already owned by another player then the business map icon will be red", 1900 );
  8. strcat(string, "\nand you cannot purchase it until the owner sells it.", 1900 );
  9. strcat(string, "\n\nAfter the owner sells it the business map icon will turn green indicating, then you", 1900 );
  10. strcat(string, "\nare able to purchase it. The player who already owns the property will receive a full refund", 1900 );
  11. strcat(string, "\nif they are still ingame, however, if they are not then they wont receive nothing...", 1900 );
  12. strcat(string, "\n\nThe following property related commands are available:", 1900 );
  13. strcat(string, "\n/buyproperty(/buyprop or /bprop): Buy a property for the purchase price.", 1900 );
  14. strcat(string, "\n/sellproperty(/sellprop or /sellp): Sell one of your properties.", 1900 );
  15. strcat(string, "\n/myproperties(/myprops): Display a list of all the properties you own.", 1900 );
  16. strcat(string, "\n/propertyinfo(/propinfo or /pinfo): Displays the property information and stats.", 1900 );
  17. strcat(string, "\n/gotoproperty(/gotoprop or /gp): Teleport to a property that you currently own.", 1900 );
  18. strcat(string, "\n/cashtobank: To receive the money to your bank account.", 1900 );
  19. strcat(string, "\n/cashtohand: To receive the money directly to you.", 1900 );
  20. ShowPlayerDialog(playerid,1246, DIALOG_STYLE_MSGBOX, "YG Property Help ", string, "OK","Cancel");
  21. return 1;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement