Search Results
It is possible, that you haven't updated the streamer-wrapper. The version of the plugin in 1.1-snapshot wasn't changed in initial commit. Try to update streamer-wrapper once more (in case you have of...
31,964
@Su37Erich: make sure that you are using the latest version of streamer plugin, then make sure that you compile you java code with streamer wrapper 1.1, and finally - make sure that you add dependency...
31,964
@mk124: could you please give us more information about threads? I've seen some posts where you've written that using multiple threads and not running them on SAMP one may cause a server to crash. I w...
31,964
@dusk: of course, modules help to separate your app logic, but you are making it more painful cause you have to create an intermediate API (as you did). As work a around, there are packages which you...
31,964
@dusk, why do you have to separate your app into large amount of modules? Also, if there are modules that are depend on each other, it means they are not separate. I'm not very good at software archit...
31,964
@mk124: dammit, forgot to check player's methods, thanks
31,964
I'm wondering about PlayerKeyStateChangeEvent... Why is there only getOldState() method? What about getNewState()?
31,964
New question: How to output a message to a player if he typed CommandGroup command without any other parameters? For example in lvdm, with a command /test. You type "/test", and how to show a player a...
31,964
Could you give us more details about your problem? First thought, that came to my mind: check public OnPlayerCommandText - each should return 0 at the end of the public: PHP код: public OnPla...
97
Try to replace all 1's with 0's in ApplyAnimation function: PHP код: ApplyAnimation(playerid, "PED", "CLIMB_jump2fall", 4.1, 0, 0, 0, 0, 0); 
169
Try to change your if condition in SendCopMessage to this: PHP код: stock SendCopMessage(col, string[])  {      for(new i = 0; i < MAX_PLAYERS; i++)      {        ...
62
@GhostHacker, actually it is. @Banditul18, you should define your function in this way: PHP код: stock GetPlayerRank(playerid, rank[], len) {     new tirist = APlayerData[playerid][S...
87
@mk124, I tried that, but I got the following message: Код: [SHOEBILL] Calling java_TestArray with 3 parameters, but was expecting 2 parameters. array[0] = 0 array[1] = 0 array[2] = 0 array[3] = 0...
31,964
@mk124, found an issue with passing arrays to java function - it is impossible to pass other values except for an array and size of the array to java function. Server is being crashed. Java code: PHP...
31,964
@mk124, the gamemode is already being compiled with -d3 option (I even tried to compile with pawn, the result was the same - no any references to lines or components where error is being occured). Al...
31,964
I haven't work with Dini include, but I guess the problem is here: Quote: Originally Posted by Godey Under LoadHouses() Код: format(HouseInfo[HouseID][HName], 128, HouseName); H...
103
Back to my problem with sampgdk error (link to post: http://forum.sa-mp.com/showpost.php?...&postcount=681) @mk124, I ran my server on a bare gamemode and that error didn't come up. Btw, now I ge...
31,964
@mk124, thanks P.S. Wrote this message just to confirm that it is fixed
31,964
@dusk, try to load streamer plugin earlier than Shoebill. In server.cfg (at "plugins" line) place streamer (or streamer.so) before Shoebill.
31,964
Nice one. But you should take a look at this thread: https://sampforum.blast.hk/showthread.php?tid=571153 - how to hook a function in pawn, so people won't need to do this steps: PHP Code: //to h...
2,097