AttachObjectToVehicle
#2

Quote:
Originally Posted by Clarck
Посмотреть сообщение
hello, i used the filescript to create boxes using (ivo) AttachObjectToVehicle
when the player type / pbox......2 player is more work together giving the same command
while delivering the box, it disappears from the first that took and buga, how do I not give bug?

example:

pawn Код:
if(PlayerW[playerid][Work] == box){
    box1 = CreateObject(id ,0,0,-1000,0,0,0,100);
    box2 = CreateObject(id,0,0,-1000,0,0,0,100);
    AttachObjectToVehicle(box1, GetPlayerVehicleID(playerid), 0.000000,-0.750000,0.300000,0.000000,0.000000,89.099983);
    AttachObjectToVehicle(box2, GetPlayerVehicleID(playerid), 0.075000,-0.750000,0.449999,0.000000,0.000000,89.099983);
    SetPlayerMapIcon(playerid, 37, 1324.5773,286.8284,20.0452, 17, 0, MAPICON_GLOBAL);
    tbox[playerid] = 1;
What is the code stub? If you want to help lay out more information.

PHP код:
if (PlayerW [playerid] [Work] == box) {
box1 CreateObject(id0,0, -1000,0,0,0,100); // ID that be? you declared new box1, box2;?
box2 CreateObject(id0,0, -1000,0,0,0,100); // If you specify a floating-point better to write it as well
AttachObjectToVehicle (box1GetPlayerVehicleID (playerid), 0.000000, -0.750000,0.300000,0.000000,0.000000,89.099983);
AttachObjectToVehicle (box2GetPlayerVehicleID (playerid), 0.075000, -0.750000,0.449999,0.000000,0.000000,89.099983);
SetPlayerMapIcon (playerid37 1324.5773,286.8284,20.0452170MAPICON_GLOBAL);
tbox [playerid] = 1
Example:
PHP код:
#define MAX_MSG_SIZE (256)
public OnPlayerCommandText(playeridcmdtext[])
{
    new 
msg[MAX_MSG_SIZE];
    if (
strcmp("/mbox"cmdtexttrue10) == 0)
    {
        if (
IsPlayerInAnyVehicle(playerid)) {
            new 
vehicleid GetPlayerVehicleID(playerid);
            new 
box1 CreateObject(198320.0,0.0,0.00.0,0.0,0.0100.0);
            new 
box2 CreateObject(198320.0,0.0,0.00.0,0.0,0.0100.0);
            
AttachObjectToVehicle(box1vehicleid0.000000,-0.750000,0.3000000.000000,0.000000,89.099983);
            
AttachObjectToVehicle(box2vehicleid0.075000,-0.750000,0.4499990.000000,0.000000,89.099983);
            
SetPlayerMapIcon(playerid371324.5773,286.8284,20.0452170MAPICON_GLOBAL);
            
format(msgMAX_MSG_SIZE"MBox: box1 (%d), box2 (%d) created and attached vehicle (%d)"box1box2,vehicleid);
            
SendClientMessage(playerid0x00FF00FFmsg);
        } else {
            
SendClientMessage(playerid0xFF0000FF"You not in car!");
        }
        return 
1;
    }
    return 
0;

Reply


Messages In This Thread
AttachObjectToVehicle - by Clarck - 16.05.2015, 13:09
Re: AttachObjectToVehicle - by Logofero - 16.05.2015, 14:24
Re: AttachObjectToVehicle - by Clarck - 17.05.2015, 13:18
Re: AttachObjectToVehicle - by Konstantinos - 17.05.2015, 13:25
Re: AttachObjectToVehicle - by Logofero - 18.05.2015, 06:25

Forum Jump:


Users browsing this thread: 6 Guest(s)