10.03.2017, 15:46
You have to indent your code correctly to remove this warning.
For instance, if you were to use the callback OnGameModeInit, your code should look as the following:
If you make it look like this, you will get the warning:
You can use TAB to insert an indent into your code.
Alternatively, you can use
to avoid this warning from occurring, but this is not recommended; it would be best to just indent correctly.
For instance, if you were to use the callback OnGameModeInit, your code should look as the following:
Код:
public OnGameModeInit() { CreateObject(984, -290.56116, 1034.15173, 19.22765, 0.00000, 0.00000, -0.06000); return 1; }
Код:
public OnGameModeInit() { CreateObject(984, -290.56116, 1034.15173, 19.22765, 0.00000, 0.00000, -0.06000); return 1; }
Alternatively, you can use
Код:
#pragma tabsize 0