SA-MP Forums Archive
Help with "Pickups Max = 100, Current Pickups = 150" - 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)
+--- Thread: Help with "Pickups Max = 100, Current Pickups = 150" (/showthread.php?tid=282369)



Help with "Pickups Max = 100, Current Pickups = 150" - >>R15KY<< - 10.09.2011

Hi guys... First i want to apologize if i posted this in wrong forum section. Second, i am sorry for my bad english.

Now...I am editing GF GM, and when i want to test it on my local host, in log i get this:

Код:
[20:38:21] *** Audio Plugin: Started TCP server on port 7777
[20:38:21] UNRP
[20:38:21] Radio xxx  (id:0)
[20:38:21] Radio xxx  (id:1)
[20:38:21] Radio xxx  (id:2)
[20:38:21] Radio xxx  (id:3)
[20:38:21] Radio xxx  (id:4)
[20:38:21] Radio xxx (id:5)
[20:38:3321Radio xxx (id:6)
[20:38:21] Pickups Max = 100, Current Pickups = 150
[20:38:21] R15KY 
[20:38:21] Number of vehicle models: 100
[20:38:33] UNRP
[20:38:33] Radio xxx  (id:0)
[20:38:33] Radio xxx  (id:1)
[20:38:33] Radio xxx  (id:2)
[20:38:33] Radio xxx  (id:3)
[20:38:33] Radio xxx  (id:4)
[20:38:33] Radio xxx (id:5)
[20:38:33] Radio xxx (id:6)
[20:38:33] Pickups Max = 100, Current Pickups = 150
[20:38:33] R15KY 
[20:38:33] Number of vehicle models: 100
[20:38:41] --- Server Shutting Down.
[20:38:41] 

*** Streamer Plugin v2.5.2 by Incognito unloaded ***
and this can "loging" forever, until u stop server.


This is line from "Pickups Max = 100, Current Pickups = 150"

Код:
printf("Pickups Max = 100, Current Pickups = %d",pickups);
Please help me guys...


Re: Help with "Pickups Max = 100, Current Pickups = 150" - Sasino97 - 10.09.2011

Quote:
Originally Posted by >>R15KY<<
Посмотреть сообщение
Hi guys... First i want to apologize if i posted this in wrong forum section. Second, i am sorry for my bad english.

Now...I am editing GF GM, and when i want to test it on my local host, in log i get this:

Код:
[20:38:21] *** Audio Plugin: Started TCP server on port 7777
[20:38:21] UNRP
[20:38:21] Radio xxx  (id:0)
[20:38:21] Radio xxx  (id:1)
[20:38:21] Radio xxx  (id:2)
[20:38:21] Radio xxx  (id:3)
[20:38:21] Radio xxx  (id:4)
[20:38:21] Radio xxx (id:5)
[20:38:3321Radio xxx (id:6)
[20:38:21] Pickups Max = 100, Current Pickups = 150
[20:38:21] R15KY 
[20:38:21] Number of vehicle models: 100
[20:38:33] UNRP
[20:38:33] Radio xxx  (id:0)
[20:38:33] Radio xxx  (id:1)
[20:38:33] Radio xxx  (id:2)
[20:38:33] Radio xxx  (id:3)
[20:38:33] Radio xxx  (id:4)
[20:38:33] Radio xxx (id:5)
[20:38:33] Radio xxx (id:6)
[20:38:33] Pickups Max = 100, Current Pickups = 150
[20:38:33] R15KY 
[20:38:33] Number of vehicle models: 100
[20:38:41] --- Server Shutting Down.
[20:38:41] 

*** Streamer Plugin v2.5.2 by Incognito unloaded ***
and this can "loging" forever, until u stop server.


This is line from "Pickups Max = 100, Current Pickups = 150"

Код:
printf("Pickups Max = 100, Current Pickups = %d",pickups);
Please help me guys...
Show more lines before and after printf


Re: Help with "Pickups Max = 100, Current Pickups = 150" - >>R15KY<< - 10.09.2011

Код:
	AddStaticPickup(1247, 2, 1554.9537,-1675.6584,16.1953);//PD Building
	AddStaticPickup(1239, 2, 597.1276, -1248.648, 18.2733);
	AddStaticPickup(1239, 2, -2119.5469, -178.568, 35.3203);
	AddStaticPickup(1239, 2,569.2495,-1766.1864,14.3864);
	AddStaticPickup(1239, 2,2102.5166,-103.9202,2.2964);//Pickup za matse u PCk 
	AddStaticPickup(1239, 2,-1060.6682,-1195.5448,129.6180);//tsm farma
	AddStaticPickup(1239, 2,-1448.9490,-1500.0300,101.7578);//rm farma
	AddStaticPickup(1239, 2,-1628.9274,1388.9578,7.1875);//dostava droge za svercere droge
	AddStaticPickup(1239, 2,-1873.5226,-218.1610,18.3750);//ilegalni farmer
    AddStaticPickup(1239, 2,-2109.2239,1.0888,35.3203);//svercer droge
	pickups=pickups+29;
	printf("Pickups Max = 100, Current Pickups = %d",pickups);
	new randa = random(sizeof(RandCars));
	randa = random(sizeof(RandCars));carselect[0] = RandCars[randa][0];
	randa = random(sizeof(RandCars));carselect[1] = RandCars[randa][0];
	randa = random(sizeof(RandCars));carselect[2] = RandCars[randa][0];
	randa = random(sizeof(RandCars));carselect[3] = RandCars[randa][0];
	randa = random(sizeof(RandCars));carselect[4] = RandCars[randa][0];
	randa = random(sizeof(RandCars));carselect[5] = RandCars[randa][0];
	randa = random(sizeof(RandCars));carselect[6] = RandCars[randa][0];
there it is...


Re: Help with "Pickups Max = 100, Current Pickups = 150" - Sasino97 - 11.09.2011

Don't worry, the real MAX_PICKUPS is 2048, if you don't believe, open a_samp.exe and search for MAX_PICKUPS.

EDIT: LoL I meant open a_samp.inc not .exe LOL!! In my country it's 4:26 of night! And I'm a bit tired :P


Re: Help with "Pickups Max = 100, Current Pickups = 150" - =WoR=Varth - 11.09.2011

https://sampwiki.blast.hk/wiki/Limits


Re: Help with "Pickups Max = 100, Current Pickups = 150" - >>R15KY<< - 11.09.2011

I know that is pickups limit is 2048, but when I want to start my server on local host he begins in command pront but there is no it in client like on line server. although Ip adress is correct.


Re: Help with "Pickups Max = 100, Current Pickups = 150" - =WoR=Varth - 11.09.2011

Quote:
Originally Posted by >>R15KY<<
Посмотреть сообщение
I know that is pickups limit is 2048, but when I want to start my server on local host he begins in command pront but there is no it in client like on line server. although Ip adress is correct.
127.0.0.1 with the right port?


Re: Help with "Pickups Max = 100, Current Pickups = 150" - >>R15KY<< - 11.09.2011

no...i changed it a 5 month ago, and its 192.168.1.100 with port.....and every other servers work, but this edit not... I don know why...In log i get this:

Код:
 
----------
Loaded log file: "server_log.txt".
----------

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

[11:28:02] filterscripts = ""  (string)
[11:28:02] 
[11:28:02] Server Plugins
[11:28:02] --------------
[11:28:02]  Loading plugin: streamer
[11:28:02] 

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

[11:28:02]   Loaded.
[11:28:02]  Loading plugin: audio
[11:28:02] 

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

[11:28:02]   Loaded.
[11:28:02]  Loaded 2 plugins.

[11:28:02] 
[11:28:02] Filter Scripts
[11:28:02] ---------------
[11:28:02]   Loaded 0 filter scripts.

[11:28:02] *** Audio Plugin: Started TCP server on port 7777
[11:28:02] my gamemode
[11:28:02] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:02] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:02] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:02] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:02] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:02] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:02] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:02] Pickups Max = 100, Current Pickups = 150
[11:28:02] R15KY 
[11:28:02] Number of vehicle models: 99
[11:28:14] my gamemode
[11:28:14] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:14] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:14] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:14] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:14] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:14] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:14] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:14] Pickups Max = 100, Current Pickups = 150
[11:28:14] R15KY 
[11:28:14] Number of vehicle models: 99
[11:28:26] my gamemode
[11:28:26] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:26] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:26] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:26] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:26] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:26] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:26] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:26] Pickups Max = 100, Current Pickups = 150
[11:28:26] R15KY 
[11:28:26] Number of vehicle models: 99
[11:28:38] my gamemode
[11:28:38] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:38] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:38] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:38] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:38] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:38] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:38] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:38] Pickups Max = 100, Current Pickups = 150
[11:28:38] R15KY 
[11:28:38] Number of vehicle models: 99
[11:28:50] my gamemode
[11:28:50] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:50] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:50] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:50] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:50] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:50] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:50] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:50] Pickups Max = 100, Current Pickups = 150
[11:28:50] R15KY 
[11:28:50] Number of vehicle models: 100
[11:28:53] --- Server Shutting Down.
[11:28:53] 

*** Streamer Plugin v2.5.2 by Incognito unloaded ***
Anybody know why ?


Re: Help with "Pickups Max = 100, Current Pickups = 150" - =WoR=Varth - 11.09.2011

Can we see your OnGameModeInit?


Re: Help with "Pickups Max = 100, Current Pickups = 150" - Sasino97 - 11.09.2011

Quote:
Originally Posted by >>R15KY<<
Посмотреть сообщение
no...i changed it a 5 month ago, and its 192.168.1.100 with port.....and every other servers work, but this edit not... I don know why...In log i get this:

Код:
 
----------
Loaded log file: "server_log.txt".
----------

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

[11:28:02] filterscripts = ""  (string)
[11:28:02] 
[11:28:02] Server Plugins
[11:28:02] --------------
[11:28:02]  Loading plugin: streamer
[11:28:02] 

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

[11:28:02]   Loaded.
[11:28:02]  Loading plugin: audio
[11:28:02] 

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

[11:28:02]   Loaded.
[11:28:02]  Loaded 2 plugins.

[11:28:02] 
[11:28:02] Filter Scripts
[11:28:02] ---------------
[11:28:02]   Loaded 0 filter scripts.

[11:28:02] *** Audio Plugin: Started TCP server on port 7777
[11:28:02] my gamemode
[11:28:02] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:02] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:02] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:02] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:02] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:02] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:02] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:02] Pickups Max = 100, Current Pickups = 150
[11:28:02] R15KY 
[11:28:02] Number of vehicle models: 99
[11:28:14] my gamemode
[11:28:14] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:14] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:14] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:14] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:14] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:14] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:14] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:14] Pickups Max = 100, Current Pickups = 150
[11:28:14] R15KY 
[11:28:14] Number of vehicle models: 99
[11:28:26] my gamemode
[11:28:26] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:26] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:26] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:26] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:26] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:26] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:26] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:26] Pickups Max = 100, Current Pickups = 150
[11:28:26] R15KY 
[11:28:26] Number of vehicle models: 99
[11:28:38] my gamemode
[11:28:38] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:38] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:38] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:38] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:38] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:38] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:38] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:38] Pickups Max = 100, Current Pickups = 150
[11:28:38] R15KY 
[11:28:38] Number of vehicle models: 99
[11:28:50] my gamemode
[11:28:50] Radio BBC Radio Music pokrenut uspjesno (id:0)
[11:28:50] Radio Country Radio pokrenut uspjesno (id:1)
[11:28:50] Radio BBC Radio 1 pokrenut uspjesno (id:2)
[11:28:50] Radio BBC Radio 2 pokrenut uspjesno (id:3)
[11:28:50] Radio NonStopPlay Radio pokrenut uspjesno (id:4)
[11:28:50] Radio Tranzistor Radio pokrenut uspjesno (id:5)
[11:28:50] Radio Radio Velika Kladusa pokrenut uspjesno (id:6)
[11:28:50] Pickups Max = 100, Current Pickups = 150
[11:28:50] R15KY 
[11:28:50] Number of vehicle models: 100
[11:28:53] --- Server Shutting Down.
[11:28:53] 

*** Streamer Plugin v2.5.2 by Incognito unloaded ***
Anybody know why ?
Because 192.168.1.100 is not a valid Internet IP Address. It's a Local Address.
If you want to know your real Internet IP Address go to http://www.whatsmyip.org/