CMD:[Lost]
#1

Hello guys that's my biz cmds help menu
PHP Code:
CMD:bizhelp(playeridparams[])
{
    
SendClientMessageEx(playeridCOLOR_GREEN,"_______________________________________");
    
SendClientMessageEx(playeridCOLOR_WHITE,"*** BIZ HELP *** - type a command for more infomation.");
    
SendClientMessageEx(playeridCOLOR_GRAD3,"*** BIZ *** /buybiz /sellbiz /sellmyhouse /bizlock /setbizname /bizfee /bizinfo");
    
SendClientMessageEx(playeridCOLOR_GRAD3,"*** BIZ *** /setbankpercent /bankpercent /bizdeposit /bizwithdraw");
    return 
1;

But i lost cmd:bizinfo..
So please help me..
Reply
#2

bump any one ?
Reply
#3

What do you mean you lost CMD:bizinfo? this makes no sense sorry.
Reply
#4

I need cmd to know biz info.. but i cant found it.
Reply
#5

Um, so you want to know the text of bizinfo? Its varies from GM to GM.
Reply
#6

Try looking for the most common commands for such action:
/businessinfo
/bizinformation


If you cannot find one of those with the search feature, search manually (scroll up and down) and you'll eventually find it, if existent.
Reply
#7

Quote:

Try looking for the most common commands for such action:
/businessinfo
/bizinformation

I told you it's lost..
Quote:

Its varies from GM to GM.

It's Like Next Generation Gaming Game Mode.
Reply
#8

pawn Code:
YCMD:bizinfo(playerid, params[], help)
{
   #pragma unused params
   #pragma unused help

   new bis = PlayerInfo[playerid][pBisKey];

   if(bis == INVALID_BIZ_ID)
      return SendClientMessage(playerid, 0xAAAAAAFF, "(Error) You do not own a business!");
   
   new
      LockedText[8+16];
 
   if(BizzInfo[bis][bLocked]) LockedText = "{FF0000}Locked!";

   if(!BizzInfo[bis][bLocked]) LockedText = "{00FF00}Open!";


   new
      string[256+128];

   format(string, sizeof(string), "--------------------------------------------------");
 
   format(string, sizeof(string), "Biz name: %s, Biz locked: %s, Biz products: %d\n",
      BizzInfo[bis][bName], LockedText, BizzInfo[bis][bProducts]);
 
   format(string, sizeof(string), "--------------------------------------------------");
   ShowPlayerDialog(playerid, 1313, DIALOG_STYLE_MSGBOX, "Biz info", string, "ok", "");
   
   return 1;
}
Reply
#9

We can't read your mind, pardon me.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)