20.02.2019, 12:05
PHP код:
if (dialogid == DIALOG_EVSYSSTARTENZEIT)
{
new string [58];
if (! response) {Event [EventEdit] = 0; return 0; }
if (! IsNumeric (inputtext)) {SCM (playerid, -1, "Numbers Only!"); ShowPlayerDialog (playerid, DIALOG_EVSYSSTARTENZEIT, DIALOG_STYLE_INPUT, "Event Time", "Please enter the event time in minutes! (Min: 3) \ n", "Set", "Cancel"); return 1;}
if (strval (inputtext) <3) return SCM (playerid, "[EventSystem]: The event must take at least 3 minutes!"); // Problem
format (string, sizeof (string), "[EventSystem]: You have set the event time to% d: 00 minutes!", Event [EventTime]);
SCM (playerid, EVENT COLOR, string);
}
Problem line marked