Author Topic: Help in Commands  (Read 2436 times)

0 Members and 1 Guest are viewing this topic.

Offline asad3man

  • Made Man
  • ***
  • Posts: 121
  • A for Asad "Lion of Allah"
    • View Profile
    • Ultra DM server Website
Help in Commands
« on: May 25, 2011, 09:06:51 pm »
i want to add that command which is always start after 2 min with writting it like

auto commands script hmmmmmm

Offline Mephisto

  • Street Thug
  • *
  • Posts: 2
    • View Profile
Re: Help in Commands
« Reply #1 on: May 27, 2011, 12:42:02 am »
i want to add that command which is always start after 2 min with writting it like

auto commands script hmmmmmm

this to ongamemode init
Code: [Select]
SetTimer("twoMinutFunc",120000,true);

this after it or somwewhere
Code: [Select]
forward twoMinutFunc();
public twoMinutFunc()
{

SendClientMessageToAll(COLOR_WHITE, "spam here");

return 1;
}

Offline asad3man

  • Made Man
  • ***
  • Posts: 121
  • A for Asad "Lion of Allah"
    • View Profile
    • Ultra DM server Website
Re: Help in Commands
« Reply #2 on: May 27, 2011, 07:32:09 am »
this is the error which is coming


Offline Scripter

  • Wiseguy
  • **
  • Posts: 62
    • View Profile
Re: Help in Commands
« Reply #3 on: May 27, 2011, 10:11:22 am »
lol add this function on

 ongamemode init

SetTimer("twoMinutFunc",120000,true);

Offline asad3man

  • Made Man
  • ***
  • Posts: 121
  • A for Asad "Lion of Allah"
    • View Profile
    • Ultra DM server Website
Re: Help in Commands
« Reply #4 on: May 27, 2011, 12:53:52 pm »
Thanx dude
« Last Edit: May 27, 2011, 01:06:13 pm by asad3man »