24.03.2012, 16:12
How can I make from :
dcmd_takeoutmoney to dcmd_tom ?
dcmd_takeoutmoney to dcmd_tom ?
Well that basic, just search for dcmd_takeoutmoney (use ctrl + f) then rename it to dcmd_tom. Note: Dont forget to rename it from OnPlayerCommandText; |
dcmd_tom(playerid, params[]) //the command wich will call the long command
{
dcmd_takemoneyout (playerid, params); //the command wich you want to call with short command
return 1;
}