SA-MP Forums Archive
Warning! - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Warning! (/showthread.php?tid=251393)



Warning! - cloudysky - 26.04.2011

How do I get rid of this warning it is so annoying!

pawn Код:
(1048) : warning 209: function "cmd_needmud" should return a value
pawn Код:
command(needmud, playerid, params[])
{
    if( PlayerInfo[playerid][Admin] >= 1)
    {
        SendClientMessage(playerid, COLOR_INFO, "You have given yourself mud!");
        PlayerInfo[playerid][Mud]++;
     }
     else
     {
        SendClientMessage(playerid, RED, "You are not an admin!");
        return 1;
    }
}



Re: Warning! - austin070 - 26.04.2011

pawn Код:
command(needmud, playerid, params[])
{
    if( PlayerInfo[playerid][Admin] >= 1)
    {
        SendClientMessage(playerid, COLOR_INFO, "You have given yourself mud!");
        PlayerInfo[playerid][Mud]++;
     }
     else
     {
        SendClientMessage(playerid, RED, "You are not an admin!");
    }
    return 1;
}
Fix the indentations that SA-MP forum messes up.


Re: Warning! - cloudysky - 26.04.2011

Haha lol! silly mistake thanks!