[FilterScript] Rated R Vip System
#7

it is zcmd so u just
pawn Code:
CMD:function(playerid, params[])
{
  // all this space here its 4 u........
  return 1;
}
So if you want a /heal cmd
pawn Code:
CMD:heal(playerid, params[])
{
  SetPlayerHealth(playerid, 100);
  return 1;
}

/*
 Or
*/

CMD:heal(playerid, params[])
{
  new playerb;
  if(sscanf(params, "u", playerb)) return SendClientMessage(playerid, COLOR_WHITE, "/heal [playerid]");
  SetPlayerHealth(playerb, 100);
  return 1;
}
Also there is a dialog i made "DIALOG_SHOP", if u read the code u will see many "dialog_NAME123id"
just add something to the list of dialog_shop.... which is under the /vshop cmd..... and then create a dialog
by just add thing
pawn Code:
if(listitem == whats ever next on the list)
{

// do something here

}
Once you read the code it is completely understandable... I made it easy to edit by anyone......
Reply


Messages In This Thread
Rated R Vip System[Y_INI][DYNAMIC][SAVING] - by Glad2BeHere - 18.02.2013, 00:07
Re: Rated R Vip System - by SeV_ - 18.02.2013, 01:09
Re: Rated R Vip System - by Glad2BeHere - 18.02.2013, 01:49
Re: Rated R Vip System - by Glad2BeHere - 19.02.2013, 03:07
Re: Rated R Vip System - by XtremeR - 19.02.2013, 03:41
Re: Rated R Vip System - by Sting. - 19.02.2013, 06:05
Re: Rated R Vip System - by Glad2BeHere - 19.02.2013, 08:16
Re: Rated R Vip System - by Sting. - 19.02.2013, 08:42
Re: Rated R Vip System - by Gamer_007 - 19.02.2013, 12:50
Re: Rated R Vip System - by [L4T]Left4Theft - 19.02.2013, 13:59

Forum Jump:


Users browsing this thread: 1 Guest(s)