12.06.2010, 12:42
Код:
if(strcmp(cmdtext, "/buyheal", true) == 0) { if(IsSpawned[playerid] == 0) return SendClientMessage(playerid, COLOR_ERROR, "You are dead. You cannot use this command"); if (!IsPlayerInDynamicCP(playerid, gCheckpoint[18]) && !IsPlayerInDynamicCP(playerid, gCheckpoint[19])) return SendClientMessage(playerid,COLOR_ERROR,"You are not in the hospital checkpoint"); if(gTeam[playerid] == TEAM_MEDIC) return SendClientMessage(playerid,COLOR_ERROR,"You are a Medic. Use /healme or /cureme"); if(gTeam[playerid] == TEAM_PVTMED) return SendClientMessage(playerid,COLOR_ERROR,"You are a Private Medic. Use /healme or /cureme"); if (!IsPlayerInDynamicCP(playerid, gCheckpoint[18]) || !IsPlayerInDynamicCP(playerid, gCheckpoint[19])) return SendClientMessage(playerid,COLOR_ERROR,"You are not at the Los Santos hospital"); if(GetPlayerMoney(playerid) <= 999 && IsPlayerInCheckpoint(playerid)) return SendClientMessage(playerid,COLOR_ERROR,"You cannot afford this Medical Service {$1000)"); new Float:health; GetPlayerHealth(playerid, health); if(health == 100) return SendClientMessage(playerid,COLOR_ERROR,"You do not have any injuries"); if(IsPlayerInDynamicCP(playerid, gCheckpoint[18])) { TogglePlayerDynamicCP(playerid, 18, true); SetPlayerHealth(playerid,100); GameTextForPlayer(playerid, "~g~HEALED", 6000, 3); GivePlayerMoney(playerid,-1000); SendClientMessage(playerid,COLOR_FORESTGREEN,"You have purchased Medical services. You have been charged $1000."); } if(IsPlayerInDynamicCP(playerid, gCheckpoint[19])) { TogglePlayerDynamicCP(playerid, 19, true); SetPlayerHealth(playerid,100); GameTextForPlayer(playerid, "~g~HEALED", 6000, 3); GivePlayerMoney(playerid,-1000); SendClientMessage(playerid,COLOR_FORESTGREEN,"You have purchased Medical services. You have been charged $1000."); } return 1; }