Dir fehlt die XML Lib.
Also entweder php5-xml oder php7.0-xml
Dir fehlt die XML Lib.
Also entweder php5-xml oder php7.0-xml
Hey, I found a solution for your problem:
You have to install the php5-xml lib or if you use php7 php7.0-xml
and "frag_grenade_short" ?
(last stand)
last stand is not detectable.
And I have to look up the other one.
You could try "short", but I'm not sure
ist in der neuen Version gefixt die hoffentlich demnächst herauskommt
Hey,
die Syntax für die Customcommands hängt von der Implementation in deinem Mod ab. Solange wir die Syntax nicht kennen, können wir dir auch mit dem Customcommand nicht helfen
die findest du aber nicht mehr, weil Dennis das git immer wiped
das sollte das eigentlich dynamisch aus der Config File nehmen
EDIT: sofern sie in der config file ist. Ich weiß nicht ob Gamed den GSM mit dem -updateconfigs 1 Flag ausführt
Macht dein Mod überhaupt diese Commands mit?
Für die ganzen Custom Commands wie !bounce, !wtf, ... implementiert man im Mod meistens eine Art API (meist über eine bestimmte Dvar z.B. admin)
Der Mod prüft dann die ganze Zeit ob sich der Wert der Dvar ändert und wenn er es tut, dann ruft der Mod die entsprechenden Funktionen aus den Mod Files auf.
Das einzige was der GSM hier machen kann ist diese Dvar mit einem Wert zu belegen. Fehlt allerdings die Implementierung dahinter, dann passiert gar nichts
1. Wenn du das alles mit dem Windows eigenen Editor bearbeitest kann es passieren das er dir das in UTF 8 mit Bom speichert. Falls das so ist, benutze lieber Notepad++ dort musst du dann bei Kodierung UTF-8 ohne Bom wählen!
das Problem ist schon länger behoben worden. Der GSM verarbeitet die Datei intern richtig. Natürlich kann es nicht schaden, wenn es direkt ohne Bom gespeichert ist
//Remove UTF-8 BOM if present, json_decode() does not like it.
if (substr($content, 0, 3) == pack("CCC", 0xEF, 0xBB, 0xBF)) {
$content = substr($content, 3);
}
der letzte Eintrag in der .json ist, darf am Ende kein Komma stehen!
Ich vermute mal, dass dies das Problem ist
Einen Ingame Befehl gibt es dafür nicht.
Du kannst Gruppen bestimmte Rechte wegnehmen, wenn du ein - davor setzt.
-punishment.immunity.ban nimmt einer Gruppe die Ban Immunity
Du kannst zudem auch direkt dafür sorgen das eine Gruppe nur bestimmte Gruppen kicken/bannen kann.
Dafür musst du der jeweiligen Permission den Gruppennamen anhängen. punishment.punish.tempban.ops
in Deathrun folgen die meisten Admin Commands dem Schema set admin type:pid
Als custom command wäre das dann z.B. :
"meinCustomCommandName" : "set admin bounce:<ARG:FIND_PLAYER:PID>"
Eine genaue Erklärung findest du hier:
wow. Never seen this problem before.
Which PHP Version do you use and was your PHP part of an other package like XAMPP?.
EDIT:
i searched a bit. Maybe this helps you:
https://www.chiefarchitect.com/support/articl…-incorrect.html
http://answers.microsoft.com/en-us/windows/…68-465e18e3f3ef
I'm not sure but maybe dvars are case sensitive in cod6?
I'm so sorry :D.
Gsm doese not run without g_logSync set to 1 or higher
that's not correct. You have to set it to 1 or higher.
I made many changes in my forked version. Maybe I haven't pulled the latest version and the Scr_PlayerCmd function got removed?
I noticed that esp. promod somehow had some problems with the logging. It seems that promod (and some other mods) sometimes write their logmessage only at round start / end.
Are you sure, that your mod doesn't overwrite/change the g_logsync value?
Do you use mods like Promod?