Jump to content
  • 0

Nu porneste serverul


Question

Posted

SA-MP Dedicated Server
----------------------
v0.3c R2, (C)2005-2011 SA-MP Team

[21:55:09] filterscripts = ""  (string)
[21:55:09] 
[21:55:09] Server Plugins
[21:55:09] --------------
[21:55:09]  Loaded 0 plugins.

[21:55:09] 
[21:55:09] Filter Scripts
[21:55:09] ---------------
[21:55:09]   Loaded 0 filter scripts.

[21:55:10] Pickups Max = 100, Current Pickups = 142
[21:55:10]  
[21:55:10]  
[21:55:10]  The Godfather: LS/SF
[21:55:10] _____________________
[21:55:10]  By: Fear & parts of Astro
[21:55:10]  
[21:55:10] Number of vehicle models: 81
[21:55:22] Pickups Max = 100, Current Pickups = 142
[21:55:22]  
[21:55:22]  
[21:55:22]  The Godfather: LS/SF
[21:55:22] _____________________
[21:55:22]  By: Fear & parts of Astro
[21:55:22]  
[21:55:22] Number of vehicle models: 81
dau dublu click pe samp-server...iar apoi in consola srv se repeta mereu aceleasi lucruri
[21:55:22] Pickups Max = 100, Current Pickups = 142
[21:55:22]  
[21:55:22]  
[21:55:22]  The Godfather: LS/SF
[21:55:22] _____________________
[21:55:22]  By: Fear & parts of Astro
[21:55:22]  
[21:55:22] Number of vehicle models: 81

care poate fii cauza ?

8 answers to this question

Recommended Posts

Posted

Sterge tot OnGameModeInit si vezi daca mai face, daca nu mai face, inseamna ca e ceva prin cod, sterge cod pana merge, si ultimul cod sters este problema... apoi bagi codurile inapoi, iar pe cel defect incerci sa-l rezolvi sau il postezi aici...

Posted

stuntman[]!" post="99864" timestamp="1321388825"]

Sterge tot OnGameModeInit si vezi daca mai face, daca nu mai face, inseamna ca e ceva prin cod, sterge cod pana merge, si ultimul cod sters este problema... apoi bagi codurile inapoi, iar pe cel defect incerci sa-l rezolvi sau il postezi aici...

Cam drastica masura :))

Adauga in gm ceva de genu..

[pawn]

public OnGameModeInit( )

{

    print("Linia 1");

    //peste 500 de lini

    print("Linia 2");

    //peste alte 500 de lini

    print("Linia 3");

    //si tot asa.

    return 1;

}

[/pawn]

Si vezi daca apar in consola toate linile care leai adaugat.

Stiu si eu ... branza e pe bani, dar eu tot ma joc pe gratis!

Posted

Cam drastica masura :))

Adauga in gm ceva de genu..

[pawn]

public OnGameModeInit( )

{

    print("Linia 1");

    //peste 500 de lini

    print("Linia 2");

    //peste alte 500 de lini

    print("Linia 3");

    //si tot asa.

    return 1;

}

[/pawn]

Si vezi daca apar in consola toate linile care leai adaugat.

apar toate cele 3 linii

SA-MP Dedicated Server
----------------------
v0.3c R2, (C)2005-2011 SA-MP Team

[09:10:45] filterscripts = ""  (string)
[09:10:45] 
[09:10:45] Server Plugins
[09:10:45] --------------
[09:10:45]  Loaded 0 plugins.

[09:10:45] 
[09:10:45] Filter Scripts
[09:10:45] ---------------
[09:10:45]   Loaded 0 filter scripts.

[09:10:46] Linia 1
[09:10:46] Pickups Max = 100, Current Pickups = 142
[09:10:46] Linia 2
[09:10:46] Linia 3
[09:10:46]  
[09:10:46]  
[09:10:46]  The Godfather: LS/SF
[09:10:46] _____________________
[09:10:46]  By: Fear & parts of Astro
[09:10:46]  
[09:10:46] Number of vehicle models: 81
[09:10:58] Linia 1
[09:10:58] Pickups Max = 100, Current Pickups = 142
[09:10:58] Linia 2
[09:10:58] Linia 3
[09:10:58]  
[09:10:58]  
[09:10:58]  The Godfather: LS/SF
[09:10:58] _____________________
[09:10:58]  By: Fear & parts of Astro
[09:10:58]  
[09:10:58] Number of vehicle models: 84

Posted

stuntman[]!" post="99864" timestamp="1321388825"]

Sterge tot OnGameModeInit si vezi daca mai face, daca nu mai face, inseamna ca e ceva prin cod, sterge cod pana merge, si ultimul cod sters este problema... apoi bagi codurile inapoi, iar pe cel defect incerci sa-l rezolvi sau il postezi aici...

dupa primele chestii adaugate a inceput deja sa faca fite...

DisableInteriorEnterExits();
    new string[MAX_PLAYER_NAME];
    new string1[MAX_PLAYER_NAME];
	for(new c=0;c<CAR_AMOUNT;c++)
	{
		Gas[c] = GasMax;
	}
	PlayersTimer = SetTimer("PlayersUpdate",1000,1);
 	Pplayers = TextDrawCreate(1.600000,427.000000,"--");
 	TextDrawAlignment(Pplayers,0);
    TextDrawBackgroundColor(Pplayers,0x00000033);
	TextDrawFont(Pplayers,3);
	TextDrawLetterSize(Pplayers,0.400000,1.600000);
 	TextDrawColor(Pplayers,0x33AA33AA);
 	TextDrawSetOutline(Pplayers,1);
	TextDrawSetProportional(Pplayers,1);
 	TextDrawSetShadow(Pplayers,1);

	LoadProperty();
	LoadBizz();
	LoadSBizz();
	LoadBoxer();
	LoadStuff();
	LoadIRC();
	LoadFamilies();
	LoadCK();
	LoadTurfs();
	LoadPapers();

nu imi pot da seama de ce :|

Posted

Vezi ca prin FS-uri sa nu ai OnGameModeInit ( desi nu prea cred ).

Vezi prin functiile

LoadProperty();
	LoadBizz();
	LoadSBizz();
	LoadBoxer();
	LoadStuff();
	LoadIRC();
	LoadFamilies();
	LoadCK();
	LoadTurfs();
	LoadPapers();

daca o fi ceva de banuit.

Posted

stuntman[]!" post="99897" timestamp="1321448401"]

Vezi ca prin FS-uri sa nu ai OnGameModeInit ( desi nu prea cred ).

Vezi prin functiile

LoadProperty();
	LoadBizz();
	LoadSBizz();
	LoadBoxer();
	LoadStuff();
	LoadIRC();
	LoadFamilies();
	LoadCK();
	LoadTurfs();
	LoadPapers();

daca o fi ceva de banuit.

de la load-uri era..mersi mult pentru ajutor...TC

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.