sorry aber ich weiss nicht was ich da editieren soll???? LOL
ich hab mal die hier die direkt im adminmod intall liegt!!!
Code:
/* This plugin will show a message to everyone who connects,
* and will show another message every ten minutes.
*/
/* $Id: plugin_message.sma,v 1.2.2.5 2002/03/17 01:53:29 sbrownlow Exp $ */
#include <core>
#include <string>
#include <admin>
#include <adminlib>
new STRING_VERSION[] = "2.50.0";
public say_hello(Timer,Repeat,HLName,HLParam) {
new User[MAX_NAME_LENGTH];
new Msg[MAX_TEXT_LENGTH];
getstrvar("admin_connect_msg",Msg,MAX_TEXT_LENGTH);
if ( Msg[0] == '0' && Msg[1] == '^0' ) return;
convert_string(HLName,User,MAX_NAME_LENGTH);
messageex(User,Msg,print_center);
}
public say_stuff(Timer,Repeat,HLName,HLParam) {
new Msg[MAX_TEXT_LENGTH];
getstrvar("admin_repeat_msg",Msg,MAX_TEXT_LENGTH);
if ( Msg[0] == '0' && Msg[1] == '^0' ) return;
centersay(Msg,10,0,255,0);
}
public plugin_connect(HLUserName, HLIP, UserIndex) {
set_timer("say_hello",45,0);
return PLUGIN_CONTINUE;
}
public plugin_init() {
plugin_registerinfo("Auto-Messaging Plugin","Shows message on connect, as well as a message every x minutes.",STRING_VERSION);
new iRepeatInterval = getvar("admin_repeat_freq");
if ( iRepeatInterval >= 15 ) {
set_timer("say_stuff", iRepeatInterval, 99999);
}
return PLUGIN_CONTINUE;
}
nun habe ich da zwar die datei gefunden weiss aber nicht genau wo ich es hinschreiben soll ??!!
die andere frage ist wie bestimme ich die farben ??
hab in einem anderem threat gelesen das die erste zahl die anzeige dauer bestimmt und die 3 zahlen danach die farbe. nun wes heist das? das jede zahl eine andere farbe angibt und die msg dann die farbe wechselt oder wie ?? welche zahl steht für welche farbe ???
Oh mann das sind zwar eine menge fragen aber wozu ist mann newbie
thx schon mal im voraus !!!!