AdminMod.de https://www.adminmod.de/ |
|
sma zu amx für windows https://www.adminmod.de/viewtopic.php?t=3023 |
Seite 1 von 1 |
Autor: | Evolution999 [ 19.05.2002, 00:11 ] |
Betreff des Beitrags: | sma zu amx für windows |
ich möchte gern dieses zeug hier zu einer amx datei compilieren aber bei mir geht es nicht zeigt nur fehler an. könnt ihr das für mich machen.wenn ja dann schickt es mir bitte zu Evolution@xtc.rulez.net ------------------------------------------------------------------------------------- /* This plugin was made by: Sharpsniper it is a revision of Fah-Q[Dio]' plugin but this * pluin announces every person that connects to your server in a typesay form and * greets them. * Plugin Created: October 13, 2001, 12:48 AM * Sharpsniper: $harp$sniper Enjoy! * Changes Made: Announce Delay is now 30 seconds, Everyone gets announced */ #include <core> #include <console> #include <string> #include <admin> #include <adminlib> #define ACCESS_ALL 0 #define ANNOUNCE_DELAY 30 new STRING_VERSION[MAX_DATA_LENGTH] = "2.50.07"; plr_announce(strName[], lConnect=0) { new Text[MAX_TEXT_LENGTH] = ""; if (lConnect == 1) { strcat(Text,"Welcome ^n ",MAX_DATA_LENGTH); strcat(Text, strName,MAX_DATA_LENGTH); strcat(Text, " Enjoy playing here!!",MAX_DATA_LENGTH); } else { strcat(Text, strName,MAX_DATA_LENGTH); strcat(Text, "^n has left but will return again!",MAX_DATA_LENGTH); } typesay(Text, 7, 12, 125, 12); } public plugin_connect(HLName,HLIP,UserIndex) { new strName[MAX_NAME_LENGTH]; convert_string(HLName, strName, MAX_NAME_LENGTH); set_timer("ann_timer",ANNOUNCE_DELAY, 1, strName); return PLUGIN_CONTINUE; } public plugin_disconnect(HLName, UserIndex) { new strName[MAX_NAME_LENGTH]; convert_string(HLName, strName, MAX_NAME_LENGTH); if (access(ACCESS_ALL, strName)!=0) plr_announce(strName, 0); return PLUGIN_CONTINUE; } public ann_timer(Timer,Repeat,HLName,HLParam) { new strName[MAX_NAME_LENGTH]; convert_string(HLParam,strName,MAX_NAME_LENGTH); if (access(ACCESS_ALL, strName)!=0) plr_announce(strName, 1); } public plugin_init() { plugin_registerinfo("Client Connect Greeting!","Announces and Greets Every Player That Connects!",STRING_VERSION); return PLUGIN_CONTINUE; } ------------------------------------------------------------------------------------- |
Autor: | Warhead [ 19.05.2002, 00:52 ] |
Betreff des Beitrags: | |
Wenn Fehler drin sind, kann Dir das niemand kompilieren, denn die Fehler müssen erst mal raus... |
Autor: | Galaxycowboy [ 26.05.2002, 09:32 ] |
Betreff des Beitrags: | |
plugin_weisnich.sma(1) Error [10]: invalid function or declaration plugin_weisnich.sma(33) Error [25]: function heading differs from prototype plugin_weisnich.sma(43) Error [25]: function heading differs from prototype |
Autor: | Biohazard1 [ 26.05.2002, 16:25 ] |
Betreff des Beitrags: | |
Wie wäre es denn wenn du mal die SUCHFUNKTION des Forums nutzt und nach folgenden signifikanten Schlüsselwörtern suchst: differs from prototype Ich habe gesucht und mehr als 5 Threads zu diesem Thema gefunden. Bio |
Seite 1 von 1 | Alle Zeiten sind UTC+01:00 |
Powered by phpBB® Forum Software © phpBB Limited https://www.phpbb.com/ |