[SOLVED]
#1

EDIT :: SOLVED :: EDIT

Thank you..








Reply
#2

Anyone know how to fix this problem?
Reply
#3

Don't bump your thread dude just be patient.

Take a look at any command, the first line of any command has your answer.
Reply
#4

Код:
if ((File_VehicleOwner) == "None") { //My Function }
Change that to:
Код:
if(strcmp(File_VehicleOwner,"None",true) == 0)
https://sampwiki.blast.hk/wiki/Strcmp
Reply
#5

Quote:
Originally Posted by Henry11200
Код:
if ((File_VehicleOwner) == "None") { //My Function }
Change that to:
Код:
if(strcmp(File_VehicleOwner,"None",true) == 0)
https://sampwiki.blast.hk/wiki/Strcmp
You have to put a ! behind strcmp or it wont work

Код:
if(!strcmp(File_VehicleOwner,"None",true) == 0)
Reply
#6

Quote:
Originally Posted by яυαяαι
You have to put a ! behind strcmp or it wont work

Код:
if(!strcmp(File_VehicleOwner,"None",true) == 0)
Maybe you didn't see the "== 0" at the end ?
Reply
#7

Quote:
Originally Posted by Donny
Quote:
Originally Posted by яυαяαι
You have to put a ! behind strcmp or it wont work

Код:
if(!strcmp(File_VehicleOwner,"None",true) == 0)
Maybe you didn't see the "== 0" at the end ?
ah, lol
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)