Help!
#10

pawn Код:
dcmd_sendtoadmh(playerid, params[])
{
    new targetid, pName[MAX_PLAYER_NAME];
    if(sscanf(params, "u", targetid)) return SendClientMessage, COLOR_RED, "/sendtoadmh [playerid]");
    else if(IsPlayerAdmin(playerid)) return SendClientMessage(playerid, COLOR_RED, "You have no access to this command");
    else if(targetid == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED, "Player Not Found");
    GetPlayerName(targetid, pName, MAX_PLAYER_NAME);
    SetPlayerPos(targetid, -2329.9060058594, -1619.1413574219, 489.66583251953);
    format(string, 128, "You transfered %s (ID: %d) to Admin's House", pName, targetid);
    format(msg, 128, "You got transfered to Admin's House by Admin ID %d", playerid);
    SendClientMessage(playerid, COLOR_LIGHTBULE, string);
    SendClientMessage(targetid, COLOR_LIGHTBLUE, msg);
    return 1;
}
I found little errors in sscanf...
Reply


Messages In This Thread
Help! - by Rivera - 15.03.2011, 16:10
Re: Help! - by boelie - 15.03.2011, 16:23
Re: Help! - by Jochemd - 15.03.2011, 16:41
Re: Help! - by Rivera - 15.03.2011, 19:36
Re: Help! - by Jochemd - 15.03.2011, 19:41
Re: Help! - by Marricio - 15.03.2011, 19:44
Re: Help! - by Rivera - 15.03.2011, 19:44
Re: Help! - by Jochemd - 15.03.2011, 19:46
Re: Help! - by boelie - 15.03.2011, 19:47
Re: Help! - by Marricio - 15.03.2011, 19:49

Forum Jump:


Users browsing this thread: 1 Guest(s)