Vice City Multiplayer

VC:MP => mIRC/pawn Scripting => Topic started by: A7Xsniper on April 23, 2011, 01:13:24 AM

Title: cd in ann helpme xD [in pawno]
Post by: A7Xsniper on April 23, 2011, 01:13:24 AM
English: how to make the cd command in ann?

EspaƱol: como hacer ke el comando cd aparesca en el ann?


xD
Title: Re: cd in ann helpme xD [in pawno]
Post by: tato on April 23, 2011, 07:56:22 AM
i will do it X_X
Title: Re: cd in ann helpme xD [in pawno]
Post by: BaSSMaN on April 23, 2011, 10:24:36 AM
Meh, this is easy to do, GUPS cd.

Replace SendClientMessageToAll with GameTextForAll .. Eh?
Title: Re: cd in ann helpme xD [in pawno]
Post by: A7Xsniper on April 23, 2011, 04:45:13 PM
este es el comando !cd que quiero hacer en ann

this is the !cd command I want to do ann


}
   else if (strcmp(cmd, "!cd", true) == 0) {
  SetTimer("CountDowns", 1000, 0);
  SetTimer("CountDowns", 2000, 0);
  SetTimer("CountDowns", 3000, 0);
  SetTimer("FinalCount", 4000, 0);
  return 1;
Title: Re: cd in ann helpme xD [in pawno]
Post by: BIG[H] on April 23, 2011, 09:16:55 PM
Add this at Public's For GUPS

Quote
public CountDownsAnn()
{
   new string[256];
   format(string,256,"~y~== %s ==",IntToStr(ServerInfo[0][Countx]));
   GameTextForAll(string);
   ServerInfo[0][Countx]--;
   if(ServerInfo[0][Countx] <= 0) {
      ServerInfo[0][Countx] = 3;
   }
}

and public FinalCountAnn()
{
GameTextForAll("~o~==GO!==");

}


At cmd modify it
else if (strcmp(cmd, "!cd", true) == 0) {
SetTimer("CountDownsAnn", 1000, 0);
SetTimer("CountDownsAnn", 2000, 0);
SetTimer("CountDownsAnn", 3000, 0);
SetTimer("FinalCountann", 4000, 0);
return 1;
}
Title: Re: cd in ann helpme xD [in pawno]
Post by: A7Xsniper on April 24, 2011, 06:59:39 AM
thank you very much! BIG [H]