[HELP] Streamer Plugin v2.7.5.2 problem
#1

Hello everyone so I updated this streamer plugin to my gamemode and I compile it. It was fine then I run samp server console plugin is loaded fine when I enter in gamemode few seconds after that I get in my console from few publicks in gamemode stack underflow runtime error 7 then I switch back to previous version streamer and no errors after that. Is it problem a streamer version or ? Thanks
Reply
#2

Can you post your server log please?
Reply
#3

anyone? thanks
Reply
#4

Quote:
Originally Posted by Luca12
Посмотреть сообщение
anyone? thanks
can't you see what the above poster have just said to you? I guess you're too lazy, so please don't waste your time on Scripting Help board in search of answers if you can't even provide full and proper details.
Reply
#5

I didn't post server log beacuse when I update to that streamer I get stack underflow runtime error 7 from gamemode and when I back to previous streamer version it's fine but anyway here is server log also I check that public and code is just fine. Thanks

18:55:10] [debug] AMX backtrace:
[18:55:10] [debug] #0 ?? in public JailTimerUpdate ()
[18:55:10] [debug] Run time error 7: "Stack underflow"
[18:55:10] [debug] Stack pointer (STK) is 0x2227468, stack top (STP) is 0x222745C
Reply
#6

You can post this at the original thread of the plugin, so the developer can help you.
Reply
#7

AdamsP thanks for replying. Anyone else? Thanks
Reply
#8

Do what he said. The author of the streamer plugin likely won't see this topic, so he can't fix it. Post in the plugin's topic.
Reply
#9

Out of interest, show your JailTimerUpdate() function.
Reply
#10

here

pawn Код:
forward JailTimerUpdate();
public JailTimerUpdate()
{
    foreach(Player,i)
    {
        if(IgracLogiran[i] == 1)
        {
            if(PlayerInfo[i][Zatvoren] != 0)
            {
                PlayerInfo[i][ZatvorenVrijeme]--;
                new string[12];
                format(string,sizeof(string),"%d",PlayerInfo[i][ZatvorenVrijeme]);
                TextDrawSetString(ZatvorenDraw1[i],string);
                TextDrawShowForPlayer(i,ZatvorenDraw0[i]);
                TextDrawShowForPlayer(i,ZatvorenDraw1[i]);
            }
            else
            {
                TextDrawHideForPlayer(i,ZatvorenDraw0[i]);
                TextDrawDestroy(ZatvorenDraw0[i]);
                TextDrawHideForPlayer(i,ZatvorenDraw1[i]);
                TextDrawDestroy(ZatvorenDraw1[i]);
            }
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)