SA-MP Forums Archive
MidoStream to get it work!! - 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: MidoStream to get it work!! (/showthread.php?tid=88462)



MidoStream to get it work!! - IceColdBaby0o - 26.07.2009

Hey i cant get mido stream working and i have been trying with einteins to dont work im getting nerdrage here!!
This is how i do it:


than when i compile:



Re: MidoStream to get it work!! - BP13 - 26.07.2009

did you #include <midostream> ?


Re: MidoStream to get it work!! - IceColdBaby0o - 26.07.2009

No i havent wrote that anywhere where shall i write?


Re: MidoStream to get it work!! - cyber_punk - 26.07.2009

Yes and make sure you have the actual include in the pawn include folder.....


Re: MidoStream to get it work!! - IceColdBaby0o - 26.07.2009

Yes its in the include folder but where shall i write that he said before? please answer


Re: MidoStream to get it work!! - Klutty - 26.07.2009

Remove the closing bracket after "MidoStreamDisconnect".

You are closing the callback before other code has its chance to do anything.


Re: MidoStream to get it work!! - Vetle - 26.07.2009

add

pawn Код:
#include <midostream>
after

pawn Код:
#include <a_samp>
so it becomes

pawn Код:
#include <midostream>
#include <a_samp>



Re: MidoStream to get it work!! - Klutty - 26.07.2009

Quote:
Originally Posted by Vetle
add

pawn Код:
#include <midostream>
after

pawn Код:
#include <a_samp>
so it becomes

pawn Код:
#include <midostream>
#include <a_samp>
That wont help at all. He needs to remove the closing bracket after the MidoStreamDisconnect.


Re: MidoStream to get it work!! - Vetle - 26.07.2009

Quote:
Originally Posted by Klutty
Quote:
Originally Posted by Vetle
add

pawn Код:
#include <midostream>
after

pawn Код:
#include <a_samp>
so it becomes

pawn Код:
#include <midostream>
#include <a_samp>
That wont help at all. He needs to remove the closing bracket after the MidoStreamDisconnect.
yes it will.

Quote:
Originally Posted by IceColdBaby0o
No i havent wrote that anywhere where shall i write?
but he need to change
pawn Код:
}

{
after MidoStreamDisconnect

to


Re: MidoStream to get it work!! - IceColdBaby0o - 26.07.2009

remove what brackets?