Jump to content
  • 0

Comanda oplace


adv1337

Question

\pawno\include\SW.inc(204) : error 001: expected token: ";", but found "if" EROAREA

COD:
CMD:oplace(playerid, params[], help) {
    if(gPlayerLogged[playerid] == 0) return SendClientMessage(playerid, COLOR_LIGHTRED, "Nu esti logat!");
    if(PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, COLOR_LIGHTGREEN3, AdminOnly);
    if(eventobjects > 9) return SCM(playerid, COLOR_WHITE,"You can't place more than 10 objects.");
    new objectid,prize,sendername[30],Float:pX,Float:pY,Float:pZ,string[128];
    if(sscanf(params, "dd",objectid,prize))
    {
        SendClientMessage(playerid, COLOR_WHITE,"{AB0000}Usage: {FFFFFF}/oplace <Object (Id object)> <Prize>");
        SendClientMessage(playerid, COLOR_WHITE,"[OBJECTS] Cadou: 19054 - 19058 | Glob craciun: 19059 - 19063 | Oua paste: 19341 - 19345");
        return 1;
    }
    if(prize < 1 || prize > 10000000) return SendClientMessage(playerid, COLOR_WHITE, "Prize must be between $1 and $10,000,000.");
    GetPlayerName(playerid, sendername, sizeof(sendername));
    GetPlayerPos(playerid,pX,pY,pZ);
    eventobjects++;
    objectevent[eventobjects] = CreatePickup(objectid, 1, pX+2,pY,pZ, -1);
    eventprizeobj[eventobjects] = prize;
    format(string,sizeof(string),"Admin %s[admin:%d] started an event. Object: %d, prize: $%s.",sendername,PlayerInfo[playerid][pSQLID],objectid,FormatNumber(prize));
    ABroadCast(COLOR_RED2, string,1);
    Adminlog(string);
    return 1;
}

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

Faza este de la OnPlayerPickUpPickup uite cum am eu in gamemode-ul meu incearca si vezi daca poti inlocuii la gamemode-ul tau 

public OnPlayerPickUpPickup(playerid, pickupid)
{
	new string[256];
	for(new i = 0; i < MAX_OBJECTS; i++) {
		if(pickupid == ObjectID[i] && ObjectID[i] != -1) {
			if(PlayerInfo[playerid][pAdmin] != 0) return SCM(playerid, COLOR_ERROR, "Eroare:{FFFFFF}Nu poti colecta acest cadou deoarece esti admin!");
			new id = CountObjects();
			format(string, sizeof(string), "NR AdmBot: %s a gasit un obiect din event si a castigat $%d.", GetName(playerid), ObjectMoney[i]);
			SendClientMessageToAll(0xFF8800FF, string);
			GivePlayerMoney(playerid, ObjectMoney[i]);

			if(id-1 > 1) format(string, sizeof(string), "NR AdmBot: In acest moment mai sunt %d obiecte disponibile.", id-1);
			else if(id-1 == 1) format(string, sizeof(string), "NR AdmBot: In acest moment mai este un singur obiect disponibil.");
			else if(id-1 == 0)format(string, sizeof(string), "NR AdmBot: Evenimentul a luat sfarsit! Multumim pentru participare.");
			SendClientMessageToAll(0xFF8800FF, string);

			DestroyPickup(ObjectID[i]);
			ObjectID[i] = -1;
			ObjectMoney[i] = 0;
		}
	}
	return 1;
}

 

Edited by Koqs
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.