[Ajuda] criar random de floats e strings...
#4

Foi como eu te falei, tu tб criando a variбvel de uma forma errada entгo, tome um exemplo funcional:
pawn Code:
new vec[][] =
{
    {1,2,3, "POS 1"},
    {4,5,6, "POS 2"},
    {7,8,9, "POS 3"}
};
public OnGameModeInit()
{
    for (new i = 0; i < 3; ++i)
    {
        new rand = random(3);
        printf("%d, %d, %d, %s\n", vec[rand][0], vec[rand][1], vec[rand][2], vec[rand][3]);
    }
    return 1;
}
Acho que й isso que tu quer
Reply


Messages In This Thread
criar random de floats e strings... - by darkxdll - 20.07.2013, 14:53
Re: criar random de floats e strings... - by WLSF - 20.07.2013, 15:02
Re: criar random de floats e strings... - by darkxdll - 20.07.2013, 15:33
Re: criar random de floats e strings... - by WLSF - 20.07.2013, 15:37
Re: criar random de floats e strings... - by Don_Speed - 20.07.2013, 15:47
Re: criar random de floats e strings... - by darkxdll - 20.07.2013, 16:17

Forum Jump:


Users browsing this thread: 1 Guest(s)