How I do command that add player to activity?
#1

How I do command that add player to activity?
/addplayer [id]
the Variable is InActivty[playerid] = 1;
How do I do that command? From what I understand I need to stock but it's really complicated ...

tnx for help!
Reply
#2

Just put InActivty[id] = 1;.
Reply
#3

Do you mean to set that variable to 1 for that ID given in the command?

pawn Код:
CMD:addplayer(playerid, params[])
{
    new id;
    if (sscanf(params, "r", id)) return SendClientMessage(playerid, -1, "Usage: /addplayer <ID/Part Of Name>");
    if (!IsPlayerConnected(id)) return SendClientMessage(playerid, -1, "Invalid player");
    if (InActivty[id] == 1) return SendClientMessage(playerid, -1, "That player is already in the activity");
    InActivty[id] = 1;
    SendClientMessage(playerid, -1, "You set that player in the activity");
    return 1;
}
Modify the texts because I don't get it exactly what you mean by "add player to activity".
Reply
#4

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Do you mean to set that variable to 1 for that ID given in the command?

pawn Код:
CMD:addplayer(playerid, params[])
{
    new id;
    if (sscanf(params, "r", id)) return SendClientMessage(playerid, -1, "Usage: /addplayer <ID/Part Of Name>");
    if (!IsPlayerConnected(id)) return SendClientMessage(playerid, -1, "Invalid player");
    if (InActivty[id] == 1) return SendClientMessage(playerid, -1, "That player is already in the activity");
    InActivty[id] = 1;
    SendClientMessage(playerid, -1, "You set that player in the activity");
    return 1;
}
Modify the texts because I don't get it exactly what you mean by "add player to activity".
tnx man!!!
but, if I do it like this:
Код:
if (strcmp("/addplayer", cmdtext, true, 10) == 0)
it's not work, why?
Reply
#5

If you use strcmp, sscanf will still work I guess. Just change "params" to "cmdtext" and add the command in OnPlayerCommandText callback.
Reply
#6

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
If you use strcmp, sscanf will still work I guess. Just change "params" to "cmdtext" and add the command in OnPlayerCommandText callback.
Could be an example?
Reply
#7

@LOLtz120 care to tread the reply once again.
pawn Код:
{
    new id;
    if (sscanf(params/*change this params to cmdtext*/, "r", id)) return SendClientMessage(playerid, -1, "Usage: /addplayer <ID/Part Of Name>");
    if (!IsPlayerConnected(id)) return SendClientMessage(playerid, -1, "Invalid player");
    if (InActivty[id] == 1) return SendClientMessage(playerid, -1, "That player is already in the activity");
    InActivty[id] = 1;
    SendClientMessage(playerid, -1, "You set that player in the activity");
    return 1;
}
And add this code under:
pawn Код:
if (strcmp("/addplayer", cmdtext, true, 10) == 0)
Reply
#8

tnx guys!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)