11.07.2009, 10:40
Look.
I forgot where I saw the code before, so i need your help.
I've already got when they type /pc it's about 850+ lines. All I'm doing is this.
I forgot where I saw the code before, so i need your help.
I've already got when they type /pc it's about 850+ lines. All I'm doing is this.
pawn Код:
public OnPlayerText(playerid, text[])
{
//if(WhatTextDoIPlaceHereToDetect, like, if(strcmp"Games" seriously, I have no idea.
{
if (PlayerOnPC[playerid] == 1)
{
SendClientMessage(playerid, COLOR_BLUE, "| |______|CONNECTED|______| |");
SendClientMessage(playerid, COLOR_YELLOW, "-GAMING CARD EXPIRED");
SendClientMessage(playerid, COLOR_WHITE, "We're sorry, but your gaming");
SendClientMessage(playerid, COLOR_WHITE, "card as expired. Please try");
SendClientMessage(playerid, COLOR_WHITE, "purchasing another.");
SendClientMessage(playerid, COLOR_WHITE, " ");
SendClientMessage(playerid, COLOR_YELLOW, " Coming 17/9/1992 ");
SendClientMessage(playerid, COLOR_YELLOW, " *+* Pacman *+*");
SendClientMessage(playerid, COLOR_BLUE, "|___________________________|");
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, "** You are not Connected to a Computer.");
}
return 1;
}

