My server is ... ****** UP !
#1

Hello !

I cant believe im here !
but ...
I kinda need ur help guys !

I almost done with my script , I just needed to add some 3d text labels and objects ...

Okey ..
Lets say right now my script is okey .

Its a RP GM.
I get spawned after I login by typing my pass in a dialog .
So everything is ok.

Now , I go and add about 15-20 3dtextlabels .... ( Using streamer - CreateDynamic3DTextLabel )
And about 50 objects ( Using streamer - CreateDynamicObject )

I already had like 7300 objects , and now I added those !

so after I added them , when I login , my login dialog just wont show up !
So I pressed the spawn button without logging in.
Now
Some objects are showing up and some not .
Same with the pickups and 3d text labels ....

also the commands arent working .

I already tried to delete those objects and labels !

I think something is wrong with the streamer but im not sure !
please help me D

LOG
Quote:

----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3c R2, ©2005-2011 SA-MP Team

[19:40:33]
[19:40:33] Server Plugins
[19:40:33] --------------
[19:40:33] Loading plugin: streamer.dll
[19:40:33]

*** Streamer Plugin v2.5.2 by Incognito loaded ***

[19:40:33] Loaded.
[19:40:33] Loading plugin: audio.dll
[19:40:33]

*** Audio Plugin v0.4 by Incognito loaded ***


[19:40:33] Loaded.
[19:40:33] Loading plugin: sscanf.dll
[19:40:33]

[19:40:33] ===============================

[19:40:33] sscanf plugin loaded.

[19:40:33] © 2009 Alex "******" Cole

[19:40:33] ===============================

[19:40:33] Loaded.
[19:40:33] Loaded 3 plugins.

[19:40:33]
[19:40:33] Ban list
[19:40:33] --------
[19:40:33] Loaded: samp.ban
[19:40:33]
[19:40:33]
[19:40:33] Filter Scripts
[19:40:33] ---------------
[19:40:33] Loading filter script 'ls_elevator.amx'...
[19:40:33] Loading filter script 'buttons.amx'...
[19:40:33] Loading filter script 'audio.amx'...
[19:40:33] *** Audio Plugin: Started TCP server on port 7777
[19:40:33] Loading filter script 'igmp.amx'...
[19:40:33] Loading filter script 'actions.amx'...
[19:40:33] Loaded 5 filter scripts.

[19:40:33] *** Audio_SetPack: Error opening "audiopacks/default_pack/test.wav" for CRC check
[19:40:33] *** Audio_SetPack: Error opening "audiopacks/default_pack/example.mp3" for CRC check
[19:40:33] *** Audio_SetPack: Error opening "audiopacks/default_pack/track.ogg" for CRC check
[19:40:33] *** Audio_SetPack: Error opening "audiopacks/default_pack/file.wma" for CRC check
[19:40:33] *** Audio_SetPack: Audio pack set to "default_pack" (transferable)
[19:40:33]
[19:40:33] =======================================
[19:40:33] | |
[19:40:33] | YSI version 1.03.0011 |
[19:40:33] | By Alex "******" Cole |
[19:40:33] | |
[19:40:33] | Checking the latest YSI version.. |
[19:40:33] | |
[19:40:33] =======================================
[19:40:33]
[19:40:34] Gamemode started.
[19:40:34] Gamemode started.
[19:40:34] Gamemode started.
[19:40:34] TurfTest.
[19:40:34] EventPointsTest.
[19:40:34] EventsPointsTest2.
[19:40:34] Incoming connection: 127.0.0.1:51314
[19:40:34] GateTest.
[19:40:34] GateTest2
[19:40:34] FinalTest

BTW Sorry for my bad english.
and here the streamer im using
https://sampforum.blast.hk/showthread.php?tid=102865
Reply
#2

Your audio_setpack have a erro with opening, Try to reinstall it? it looks like you missing some files.
Reply
#3

KK thanks but it doesnt work ...
Reply
#4

Quote:
Originally Posted by Elka_Blazer
Посмотреть сообщение
KK thanks but it doesnt work ...
Do you have .Net Framework installed?
Streamer require .Net Framework 3.5 sp1 to run :P
Reply
#5

Hmm ... As I said no way thats the problem cuz everything was perfect untill I added some objects and 3dtextlabels ..

Also when I try to run the server with another gamemode like rivershell it works perfect !
But I will try your suggestion ..
EDIT : Didnt work , thanks for the try man
ANOTHER EDIT LOL : OH !!! 3.5 !!! I downloaded 3.. kk will try now
Reply
#6

Didnt work >....
Reply
#7

Quote:
Originally Posted by Elka_Blazer
Посмотреть сообщение
Didnt work >....
hmm show us your code you added so we could see what's the problem
Reply
#8

Ik not sure. But m aybe its using too much ram. Or its a bug in your script, thats crashing the server if you make a 3D Textlabel
Reply
#9

Amm I just added some objects and 3dtextlabels

Another thing is ..

On my server I use /enter and /exit to enter places

So I wanted it dynamic and getting in/out by pressing Buttons

So I got

#define KEYRELEASED(%0) \
(((newkeys & (%0)) != (%0)) && ((oldkeys & (%0)) == (%0)))

#define KEYHOLDING(%0) \
((newkeys & (%0)) == (%0))

#define KEYPRESSED(%0) \
(((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))

and I got

under OnPlayerKeyStateChange
pawn Код:
if(KEYPRESSED(KEY_CROUCH))
    {
         if(IsPlayerinposition blab bla blablbal)
         {
                     SetPlayerPos(player,24,15-025901blablblalbal);
                SetTimerEx("ResetEnterExitForPlayer",3000,0,"i",playerid);
                CanEnterExit[playerid] = 1;                    
          }
         }
that was the enter and same thing with the exit just with the exit its KEY_JUMP
also I set a timer that will let u enter a place every 3 seconds only .
forward ResetEnterExitForPlayer(playerid);
new CanEnterExit[MAX_PLAYERS];
on player connect canenterexit[playerid] = 0..... witch means he can enter
public ResetEnterExitForPlayer(playerid)
{
CanEnterExit[playerid] = 0;
return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)