SA-MP Forums Archive
Help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help (/showthread.php?tid=113790)



Help - John Rockie - 15.12.2009

I Just Want... like when i join my server It Saids "OWNER: John Rockie Has Joined!" I tried
Код:
if(IsPlayer"[SACS]JRockie"(playerid)) SendClientMessageToAll(COLOR_YELLOW, "OWNER: John Rockie Has Joined.");
  return 1;
}
But i got Errrors

If Someone Helps me ill Appropriated


Re: Help - [HiC]TheKiller - 15.12.2009

Quote:
Originally Posted by John Rockie
I Just Want... like when i join my server It Saids "OWNER: John Rockie Has Joined!" I tried
Код:
if(IsPlayer"[SACS]JRockie"(playerid)) SendClientMessageToAll(COLOR_YELLOW, "OWNER: John Rockie Has Joined.");
  return 1;
}
But i got Errrors

If Someone Helps me ill Appropriated
pawn Код:
public OnPlayerConnect(playerid)
{
  new Pname[24];
  GetPlayerName(playerid, Pname, 24);
  if(strcmp(Pname, "[SACS]JRockie", true) == 0)
  {
    SendClientMessageToAll(COLOR_YELLOW, "OWNER: John Rockie Has Joined.");
    return 1;
  }
  return 1;
}



Re: Help - John Rockie - 15.12.2009

Thanks