פשוט מאוד, תפסיק לבקש עזרה על כל דבר קטן כזה זו לא בעיה בכלל..
קח:
PHP Code:
if(strcmp(cmd, "/SetCarPrice", true) == 0)
{
new str[256]; tmp = strtok(cmdtext,idx);
format(file,sizeof(file),"Car/car%d.txt",GetPlayerVehicleID(playerid));
if(!IsPlayerAdmin(playerid)) return 0;
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid,COLOR_WHITE,".אינך ברכב");
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_RED, "Usage: /SetCarPrice <Price>");
if(!IsNumber(tmp)) return SendClientMessage(playerid, COLOR_RED, "Usage: /SetCarPrice <Price>");
dini_IntSet(file, "Price", strval(tmp));
format(str, sizeof(str), ".%d שינית את מחיר רכב זה ל-", strval(tmp)), SendClientMessage(playerid, COLOR_YELLOW, str);
return 1;
}
תבדוק שעובד..