Need help with the Latest Streamer
#2

Get the latest 0.3e includes from the server package, that's probably the reason.

The other errors (loose indention + unreachable code) you must show us, unreachable code is usually because you returned a value while you did something after it.

So, like this would be bad:

pawn Код:
// Unreachable code, bad
return 1;
value = 1;

// Good:

value = 1;
return 1;

// Loose indention, bad
if(blabla == 1)
{
value = 1; //Loose indention here

// Good;
if(blabla == 1)
{
    value = 1;
Reply


Messages In This Thread
Need help with the Latest Streamer - by Rohan_Ubhare - 28.07.2012, 10:21
Re: Need help with the Latest Streamer - by Kindred - 28.07.2012, 10:45
Re: Need help with the Latest Streamer - by Rohan_Ubhare - 28.07.2012, 10:52
Re: Need help with the Latest Streamer - by Kindred - 28.07.2012, 10:55
Re: Need help with the Latest Streamer - by Rohan_Ubhare - 28.07.2012, 11:01

Forum Jump:


Users browsing this thread: 1 Guest(s)