SA-MP Forums Archive
Mod please delete - 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: Mod please delete (/showthread.php?tid=403565)



Mod please delete - UnknownGamer - 30.12.2012

FIXED.


Re: CMD:plantweed Issue - Babul - 30.12.2012

add a break when an empty slot got found and filled:
Код:
            WEEDS[playerid] = WEEDS[playerid] - 5;
            break;
        }
    }
    return 1;
}



Re: CMD:plantweed Issue - RedCrossER - 30.12.2012

Close the for loop before sending client message


Re: CMD:plantweed Issue - UnknownGamer - 30.12.2012

Quote:
Originally Posted by Babul
Посмотреть сообщение
add a break when an empty slot got found and filled:
Код:
            WEEDS[playerid] = WEEDS[playerid] - 5;
            break;
        }
    }
    return 1;
}
break; didn't work. But return 1; did.

Thanks.