[Script/Help] Pickup problem -
www - 18.01.2015
Hello,
I have a Derby map in the sea, i created a pickup + text in the map coordinates, well the text works fine but the pickup goes down to the sea.
Here is a screenshot to understand: http://image.noelshack.com/fichiers/...-sa-mp-001.png
I think that it's a samp bug, and thanks for help
Re: [Script/Help] Pickup problem -
Skully82 - 18.01.2015
Maybe you should check the co-ords..
Re : [Script/Help] Pickup problem -
Chris53340 - 18.01.2015
PHP код:
Reparation = CreatePickup(1239, 14, -3678.0701,1606.6134,17.4443);
Create3DTextLabel("Reparation", 0x3344E1FF, -3678.0701,1606.6134,17.4443, 40.0, 0, 0);
Nitro = CreatePickup(1239, 14, -3675.6150,1603.8481,10.5622);
Create3DTextLabel("Nitro", 0x3344E1FF, -3675.6150,1603.8481,10.5622, 40.0, 0, 0);
Re: [Script/Help] Pickup problem -
www - 18.01.2015
Quote:
Originally Posted by Skully82
Maybe you should check the co-ords..
|
It's the same co-ords with the text but the pickup goes down and the text works fine
Re: Re : [Script/Help] Pickup problem -
www - 18.01.2015
Quote:
Originally Posted by Chris53340
PHP код:
Reparation = CreatePickup(1239, 14, -3678.0701,1606.6134,17.4443);
Create3DTextLabel("Reparation", 0x3344E1FF, -3678.0701,1606.6134,17.4443, 40.0, 0, 0);
Nitro = CreatePickup(1239, 14, -3675.6150,1603.8481,10.5622);
Create3DTextLabel("Nitro", 0x3344E1FF, -3675.6150,1603.8481,10.5622, 40.0, 0, 0);
|
Chris is a scripter with us, and this is our code.
Re: [Script/Help] Pickup problem -
www - 19.01.2015
UP, help please
AW: [Script/Help] Pickup problem -
Saize - 19.01.2015
Just as I remember pickups cant be placed on a mapped underground, I guess some others had the same problem too.
Re: [Script/Help] Pickup problem -
Matess - 19.01.2015
Check this:
http://forum.sa-mp.com/showthread.ph...20#post3334620
So solution is -> move everything up
Re: [Script/Help] Pickup problem -
Clad - 19.01.2015
Don't put them exactly in the coordinates, That's why they fall.
Up the coordinates so when the vehicle spawns will be put in the map and it won't fall.
Re: [Script/Help] Pickup problem -
www - 19.01.2015
Quote:
Originally Posted by Clad
Don't put them exactly in the coordinates, That's why they fall.
Up the coordinates so when the vehicle spawns will be put in the map and it won't fall.
|
Код:
CreatePickup(1239, 14, -3678.0701,1606.6134,17.4443, -1);
Here is my code, how can i solve it?