- 0
Comanda /quitjob
-
Similar Content
-
- 2 replies
- 2.004 views
-
- 1 answer
- 449 views
-
- 2 answers
- 1.044 views
-
Am o problema cu un battlepass,de ce nu merge comanda /misiuni cand o scriu,tin sa precizez ca script-ul mi l-a facut chatgpt
By cbnmihaita,
- 2 answers
- 859 views
-
- 3 answers
- 1.380 views
-
-
Recently Browsing 0 members
- No registered users viewing this page.

Question
Balvin[]
Ero(area / rile) / warning-(ul / urile):Nu am erori/warning-uri
Liniile de cod / sursa / script-ul(obligatoriu):
Imagini / Video (optional):
/*==============================================================================
Comanda: /quitjob
==============================================================================*/
if(strcmp(cmd, "/quitjob", true) == 0)
Ati incercat sa rezolvati singur?:Da{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] != 0)
{
if(PlayerInfo[playerid][pJob] > 0)
{
if(PlayerInfo[playerid][pDonateRank] > 0)
{
if(PlayerInfo[playerid][pContractTime] >= 2)
{
SendClientMessage(playerid, -1, "* You already forfilled your 1 hour Contract, and quited your Job.");
PlayerInfo[playerid][pJob] = 0;
PlayerInfo[playerid][pChar] = 0;
PlayerInfo[playerid][pContractTime] = 0;
}
else
{
new chours = 2 - PlayerInfo[playerid][pContractTime];
format(string, sizeof(string), "* You still have %d hours left to forfill and end your Contract.", chours / 2);
SendClientMessage(playerid, -1, string);
}
}
else
{
if(PlayerInfo[playerid][pContractTime] >= 10)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "* You already forfilled your 5 hour Contract, and quited your Job.");
PlayerInfo[playerid][pJob] = 0;
PlayerInfo[playerid][pChar] = 0;
PlayerInfo[playerid][pContractTime] = 0;
}
else
{
new chours = 10 - PlayerInfo[playerid][pContractTime];
format(string, sizeof(string), "* You still have %d hours left to forfill and end your Contract.", chours / 2);
SendClientMessage(playerid, -1, string);
}
}
}
else
{
SendClientMessage(playerid, -1, ""ALBASTRU2"Nu ai nici un job !");
return 1;
}
}
else
{
SendClientMessage(playerid, -1, ""ALBASTRU2"Nu esti conectat !");
return 1;
}
}
return 1;
}
2 answers to this question
Recommended Posts