SA-MP Forums Archive
WTF IS WRONG - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: WTF IS WRONG (/showthread.php?tid=664138)



WTF IS WRONG - playstores - 20.02.2019

PHP код:
if (dialogid == DIALOG_EVSYSSTARTENZEIT)
{
    new 
string [58];
    if (! 
response) {Event [EventEdit] = 0; return 0; }
    if (! 
IsNumeric (inputtext)) {SCM (playerid, -1"Numbers Only!"); ShowPlayerDialog (playeridDIALOG_EVSYSSTARTENZEITDIALOG_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 (stringsizeof (string), "[EventSystem]: You have set the event time to% d: 00 minutes!"Event [EventTime]);
    
SCM (playeridEVENT COLORstring);

Problem: error 035: argument type mismatch (argument 2)

Problem line marked


Re: WTF IS WRONG - Kaliber - 20.02.2019

You missed the color Parameter.

Write it like this:

PHP код:
SCM (playerid, -1"[EventSystem]: The event must take at least 3 minutes!"); 



Re: WTF IS WRONG - TheToretto - 20.02.2019

YOU ALSO MISSED AN UNDERSCORE FOR YOUR:

Код:
EVENT COLOR
REPLACE IT WITH

Код:
EVENT_COLOR



Re: WTF IS WRONG - playstores - 20.02.2019

Quote:
Originally Posted by Kaliber
Посмотреть сообщение
You missed the color Parameter.

Write it like this:

PHP код:
SCM (playerid, -1"[EventSystem]: The event must take at least 3 minutes!"); 

thx !


Re: WTF IS WRONG - playstores - 20.02.2019

Quote:
Originally Posted by TheToretto
Посмотреть сообщение
YOU ALSO MISSED AN UNDERSCORE FOR YOUR:

Код:
EVENT COLOR
REPLACE IT WITH

Код:
EVENT_COLOR
And no that was correct, php codes fault


Re: WTF IS WRONG - TheToretto - 20.02.2019