na dan is ja gut
so habe da noch ne frage das zwar nicht zu diesen thema gehört
aber es ist mir zu dumm dafür ertra wieder nen neues thema auf zu machen
also ich habe mir das autorestart plugin gesaugt und ich will genau wie bei den welcome plugin das nen sound kommt wen der restart gemacht wird nur gibet da jetz ein prob
ma eben den queltext damit du weisst was los ist ^^
------------------------------------------------------------------------------------
#include <amxmod>
new onoff[8]
new bool:AutoRR = true /* Plugin is enabled default - Set to false to disable */
new bool:AutoHud = true /* Plugin uses Hud-Messages - Set to false to use client_say */
new username[32]
new logfilename[256]
public amx_auto_rr(id){
if (!(get_user_flags(id)&ADMIN_SLAY)){
client_print(id,print_console,"[AMX] You have no access to that command!")
return PLUGIN_HANDLED
}
if (read_argc() < 2){
checkmode()
client_print(id,print_console,"[AMX] Usage: amx_auto_rr < 0 | 1 > | Currently: * %s *", onoff)
return PLUGIN_HANDLED
}
read_argv(1,onoff,2)
if (equal(onoff,"1", 1)){
AutoRR = true
client_print(id,print_console,"[AMX] Auto-Restart is now enabled!")
if (AutoHud == true){
hudstyle()
}
else {
clientstyle()
}
log_to_file(logfilename,"amx_auto_rr: ^"%s^" enabled Auto-Restart.",get_user_name(id,username,31))
}
else {
AutoRR = false
client_print(id,print_console,"[AMX] Auto-Restart is now disabled")
if (AutoHud == true){
hudstyle()
}
else {
clientstyle()
}
log_to_file(logfilename,"amx_auto_rr: ^"%s^" disabled Auto-Restart.",get_user_name(id,username,31))
}
return PLUGIN_HANDLED
}
public checkmode() {
if(AutoRR == true){
copy(onoff, 8, "enabled")
}
else {
copy(onoff, 8, "disabled")
}
return PLUGIN_CONTINUE
}
public hudstyle() {
new message[128]
checkmode()
format(message,127,"[AMX]: Admin has %s Auto-Restart!",onoff)
set_hudmessage(0, 100, 200, 0.05, 0.65, 2, 0.02, 6.0, 0.01, 0.1, 2)
show_hudmessage(0,message)
return PLUGIN_CONTINUE
}
public clientstyle() {
new message[128]
checkmode()
format(message,127,"[AMX]: Admin %s Auto-Restart",onoff)
client_print(0,print_chat,message)
}
public restart_time()
set_task (get_cvar_float("amx_auto_rr_time"),"restart_map",0)
public restart_map() {
if (AutoRR==true){
set_hudmessage(0, 100, 200, 0.05, 0.65, 2, 0.02, 6.0, 0.01, 0.1, 2)
show_hudmessage(0,"[AMX] Automatic Round-Restart!")
set_cvar_float("sv_restart",2.0)
}
else {
client_print(0,print_chat,"[AMX] Autorestart plugin is disabled. No restart will be done!")
}
}
public plugin_init() {
register_plugin("Auto-Restart","0.9.2","ToT | V!PER")
register_event("TextMsg","restart_time","a","2&#Game_C")
register_cvar("amx_auto_rr_time","25.0")
register_clcmd("amx_auto_rr","amx_auto_rr",ADMIN_SLAY,"amx_auto_rr : < 0 | 1> Turns ability to Auto-Restart (Game Commencing) on and off")
get_time("addons/amx/logs/admin%m%d.log",logfilename,255)
return PLUGIN_CONTINUE
}
----------------------------------------------------------------------------------
so da habe ich mir gedacht ich nehme mir ma
----------------------------------------------------------------------------------
public restart_map() {
if (AutoRR==true){
set_hudmessage(0, 100, 200, 0.05, 0.65, 2, 0.02, 6.0, 0.01, 0.1, 2)
show_hudmessage(0,"[AMX] Automatic Round-Restart!")
set_cvar_float("sv_restart",2.0)
}
else {
client_print(0,print_chat,"[AMX] Autorestart plugin is disabled. No restart will be done!")
}
}
-----------------------------------------------------------------------------------
und änder den so um
-----------------------------------------------------------------------------------
public restart_map() {
if (AutoRR==true){
set_hudmessage(0, 100, 200, 0.05, 0.65, 2, 0.02, 6.0, 0.01, 0.1, 2)
show_hudmessage(0,"[AMX] Automatic Round-Restart!")
client_cmd(id,"spk misc/reset")
set_cvar_float("sv_restart",2.0)
}
else {
client_print(0,print_chat,"[AMX] Autorestart plugin is disabled. No restart will be done!")
}
}
---------------------------------------------------------------------------------
public plugin_precache() {
precache_sound("misc/reset.wav");
return PLUGIN_CONTINUE
}
das habe ich ganz unten angehangen denke das da nicht der fehler liegen wird
aber ich bekomme jetz fogenden error
auto-restart.sma(108) : error 017: undefined symbol "id"
ich danke jetz schonmal für die hilfe
_________________ Und hier ein paar Worte
An die -rechte- Adresse
Leckt uns am Arsch
Sonst gibt´s auf die Fresse
|