- เครดิต
- 89
- ความรู้
-
- เงิน $
-
- ความดี
-
|
CMD:edithung(playerid, params[])
{
new Float:bx,Float:by,Float:bw,Float:bh;
if (sscanf(params, "ffff", bx, by, bw, bh))
return SyntaxMsg(playerid, "/edithung [X] [Y] [W] [H]");
SetPlayerProgressBarPos(playerid, PlayerData[playerid][pBars][0], bx, by);
SetPlayerProgressBarWidth(playerid, PlayerData[playerid][pBars][0], bw);
SetPlayerProgressBarHeight(playerid, PlayerData[playerid][pBars][0], bh);
SetPlayerProgressBarDirection(playerid, PlayerData[playerid][pBars][0], BAR_DIRECTION_UP);
return 1;
}
CMD:editwater(playerid, params[])
{
new Float:bx,Float:by,Float:bw,Float:bh;
if (sscanf(params, "ffff", bx, by, bw, bh))
return SyntaxMsg(playerid, "/edithung [X] [Y] [W] [H]");
SetPlayerProgressBarPos(playerid, PlayerData[playerid][pBars][1], bx, by);
SetPlayerProgressBarWidth(playerid, PlayerData[playerid][pBars][1], bw);
SetPlayerProgressBarHeight(playerid, PlayerData[playerid][pBars][1], bh);
SetPlayerProgressBarDirection(playerid, PlayerData[playerid][pBars][1], BAR_DIRECTION_UP);
return 1;
} |
|