SA-MP Forums Archive
Pickups not showing? - 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: Pickups not showing? (/showthread.php?tid=500038)



Pickups not showing? - rangerxxll - 11.03.2014

Well. I've encountered this problem multiple times. I'm not sure if it's sa-mp related, or if it's on my end. But I'm attempting to create pickups at various locations and none are showing. I've also made sure the players VW is "0". Whats the issue...?

pawn Код:
CreatePickup(1210, 3, -993933346, -989614530, 1104547088, 0);
CreatePickup(1210, 3, -993674921, -989793743, 1112291685, 0);
CreatePickup(1210, 3, -993130652, -989842375, 1113892786, 0);
It's under ongamemodeinit, and is in a game mode. I've also tried it with the virtual world as -1. No avail.


Respuesta: Pickups not showing? - SickAttack - 11.03.2014

Try this:
pawn Код:
CreatePickup(1210, 1, -993933346, -989614530, 1104547088);
CreatePickup(1210, 1, -993674921, -989793743, 1112291685);
CreatePickup(1210, 1, -993130652, -989842375, 1113892786);



Re: Pickups not showing? - rangerxxll - 11.03.2014

Why? It looks like you remove the virtual world, and just change the pickup type. What does this even do?


Respuesta: Pickups not showing? - SickAttack - 11.03.2014

Refer to here: https://sampwiki.blast.hk/wiki/CreatePickup
I changed the pickup type and removed the last parameter with is not needed if your not using virtual worlds.


Re: Pickups not showing? - rangerxxll - 11.03.2014

I'd like to keep my current pickup type, as it effects my whole system. Would this be possible? and I'll try it right now.

EDIT: Still doesn't work.


Re: Pickups not showing? - newbienoob - 11.03.2014

The location is WAY TOO FAR from San Andreas.


Re: Pickups not showing? - rangerxxll - 11.03.2014

I used a pickup creator that supposively provided the coords in a .txt file. Are you telling me it's wrong? And I'm just curious as to how you know it's too far off?

EDIT: I tested a new pickup myself, and it looks like you're right. Is there another pickup creator i could use that saves them in a file properly...? What a waste of time.


Re: Pickups not showing? - Macronix - 11.03.2014

Is it okay, if it's an ingame editor? Then try this one: https://sampforum.blast.hk/showthread.php?tid=111428