Jump to content
Autentificarea cu Google și Facebook nu mai este disponibilă. ×
  • 0

Problema /find


Guest Proteine

Question

Guest Proteine
Posted

Deci cad dau /find apare checkpointu dar pe harta nu se vede patratu rosu cum ar trebui sa se vada ce trebuie sa fak

Acii comanda /find - http://pastebin.com/n0f04guC

1 answer to this question

Recommended Posts

Posted

if(strcmp(cmd, "/find", true) == 0)

{

    if(IsPlayerConnected(playerid))

    {

    if(PlayerInfo[playerid][pJob] != 19)

    {

SendClientMessage(playerid, COLOR_GREY, " You are not a Detective !");

return 1;

    }

    if(PlayerOnMission[playerid] > 0)

{

SendClientMessage(playerid, COLOR_GREY, " On a mission right now, can't use this command !");

    return 1;

}

if(UsedFind[playerid] != 0 && PlayerInfo[playerid][pDetSkill] < 401)

{

    SendClientMessage(playerid, COLOR_GREY, " You've already searched for someone, wait 1 minutes !");

    return 1;

}

    tmp = strtok(cmdtext, idx);

if(!strlen(tmp))

{

SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /find [playerid/PartOfName]");

return 1;

}

giveplayerid = ReturnUser(tmp);

if(IsPlayerConnected(giveplayerid))

{

    if(giveplayerid != INVALID_PLAYER_ID)

          {

        new points;

        new level = PlayerInfo[playerid][pDetSkill];

if(level >= 0 && level <= 50)

{ points = 35; }

else if(level >= 51 && level <= 100)

{ points = 55; }

else if(level >= 101 && level <= 200)

{ points = 100; }

else if(level >= 201 && level <= 400)

{ points = 130; }

else if(level >= 401)

{ points = 150; }

    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));

        new Float:X,Float:Y,Float:Z;

GetPlayerPos(giveplayerid, X,Y,Z);

SetPlayerCheckpoint(playerid, X,Y,Z, 6);

FindTime[playerid] = 1;

FindTimePoints[playerid] = points;

PlayerInfo[playerid][pDetSkill] ++;

UsedFind[playerid] = 1;

if(PlayerInfo[playerid][pDetSkill] == 50)

{ SendClientMessage(playerid, COLOR_YELLOW, "* Your Detective Skill is now Level 2, soon you are able to find Faction Members."); }

else if(PlayerInfo[playerid][pDetSkill] == 100)

{ SendClientMessage(playerid, COLOR_YELLOW, "* Your Detective Skill is now Level 3, soon you are able to find Faction Members."); }

else if(PlayerInfo[playerid][pDetSkill] == 200)

{ SendClientMessage(playerid, COLOR_YELLOW, "* Your Detective Skill is now Level 4, you are now able to find Faction Members."); }

else if(PlayerInfo[playerid][pDetSkill] == 400)

{ SendClientMessage(playerid, COLOR_YELLOW, "* Your Detective Skill is now Level 5, you are now able to find Faction Members."); }

}

}

else

{

    SendClientMessage(playerid, COLOR_GREY, " Invalid Name/ID !");

}

}

    return 1;

}

16189165.gifrastamaunbydeejaylobo1.gifsmileysw0181.gif

xmsok6ay41.gif

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.