random spawn help
#3

Quote:
Originally Posted by Kitten
Посмотреть сообщение
pawn Код:
new Float:deagle[][4] =
{
    {2874.7554,1076.2385,46.8451},
    {2861.5366,1079.0875,46.7841},
    {2856.9751,1058.9896,46.7861},
    {2876.2344,1056.9565,46.8220}
};
You've gotten it wrong too! You're adding an extra cell in there that's never initialized. There's 3 cells being used in the second dimension!

pawn Код:
new Float:deagle[][3] =
{
    {2874.7554,1076.2385,46.8451},
    {2861.5366,1079.0875,46.7841},
    {2856.9751,1058.9896,46.7861},
    {2876.2344,1056.9565,46.8220}
};
That would be correct!
Reply


Messages In This Thread
random spawn help - by tanush - 23.07.2011, 03:43
Re: random spawn help - by Kitten - 23.07.2011, 05:19
Re: random spawn help - by JaTochNietDan - 23.07.2011, 05:21
Re: random spawn help - by tanush - 23.07.2011, 15:35
Re: random spawn help - by Bob_Raw - 23.07.2011, 15:43
Re: random spawn help - by tanush - 23.07.2011, 15:48
Re: random spawn help - by iPLEOMAX - 23.07.2011, 15:52
Re: random spawn help - by tanush - 23.07.2011, 16:02
Re: random spawn help - by iPLEOMAX - 23.07.2011, 16:16

Forum Jump:


Users browsing this thread: 4 Guest(s)