Author Topic: cd in ann helpme xD [in pawno]  (Read 2821 times)

0 Members and 1 Guest are viewing this topic.

Offline A7Xsniper

  • Street Thug
  • *
  • Posts: 20
    • View Profile
cd in ann helpme xD [in pawno]
« on: April 23, 2011, 02: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
« Last Edit: April 23, 2011, 02:20:36 am by A7Xsniper »

Offline tato

  • Made Man
  • ***
  • Posts: 106
  • I bet u don't know me!
    • View Profile
    • EA Server
Re: cd in ann helpme xD [in pawno]
« Reply #1 on: April 23, 2011, 08:56:22 am »
i will do it X_X

BaSSMaN

  • Guest
Re: cd in ann helpme xD [in pawno]
« Reply #2 on: April 23, 2011, 11:24:36 am »
Meh, this is easy to do, GUPS cd.

Replace SendClientMessageToAll with GameTextForAll .. Eh?

Offline A7Xsniper

  • Street Thug
  • *
  • Posts: 20
    • View Profile
Re: cd in ann helpme xD [in pawno]
« Reply #3 on: April 23, 2011, 05: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;

Offline BIG[H]

  • Made Man
  • ***
  • Posts: 159
  • Sight of light
    • View Profile
Re: cd in ann helpme xD [in pawno]
« Reply #4 on: April 23, 2011, 10: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
Code: [Select]
public FinalCountAnn()
{
GameTextForAll("~o~==GO!==");

}

At cmd modify it
Code: [Select]
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;
}
« Last Edit: April 24, 2011, 03:52:15 pm by BIG[H] »
Outdoor city server Administrator, FS server owner!

Offline A7Xsniper

  • Street Thug
  • *
  • Posts: 20
    • View Profile
Re: cd in ann helpme xD [in pawno]
« Reply #5 on: April 24, 2011, 07:59:39 am »
thank you very much! BIG [H]