creating a vehicle crashes the server, hmm.
#1

pawn Код:
static cell AMX_NATIVE_CALL vs_AddStaticVehicle(AMX *amx, cell *params)
{
    int model = params[ 1 ];
    float X = amx_ctof( params[ 2 ] );
    float Y = amx_ctof( params[ 3 ] );
    float Z = amx_ctof( params[ 4 ] );
    float A = amx_ctof( params[ 5 ] );
    int color1 = params[ 6 ];
    int color2 = params[ 7 ];


    logprintf("AddStaticVehicle( %d, %f, %f, %f, %f, %d, %d );", model, X, Y, Z, A, color1, color2 );
    int id = AddStaticVehicle( model, X, Y, Z, A, color1, color2 );
    return id;
}
Once I run that function, it just crashes the server. Something is wrong with AddStaticVehicle, but I'm not sure.

Input:
pawn Код:
native vs_AddStaticVehicle( modelid, Float: X, Float: Y, Float: Z, Float: Angle, color1, color2 );

public OnGameModeInit()
{
    // Don't use these lines if it's a filterscript
    SetGameModeText("Blank Script");
    AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
   
    vs_AddStaticVehicle( 560, 69.0, 69.0, 69.0, 270.0, 126, 126 );
    return 1;
}
Output:
Код:
[10:56:26] AddStaticVehicle( 560, 69.000000, 69.000000, 69.000000, 270.000000, 126, 126 );
Extremely grateful if someone helps, this is my first plugin I'm trying to develop!
Reply


Messages In This Thread
creating a vehicle crashes the server, hmm. - by Lorenc_ - 18.08.2012, 00:48
Re: creating a vehicle crashes the server, hmm. - by Mauzen - 18.08.2012, 00:56
Re: creating a vehicle crashes the server, hmm. - by Arca - 18.08.2012, 01:29
Re: creating a vehicle crashes the server, hmm. - by samiras - 18.08.2012, 02:33
Re: creating a vehicle crashes the server, hmm. - by Lorenc_ - 18.08.2012, 02:56
Re: creating a vehicle crashes the server, hmm. - by Arca - 18.08.2012, 05:20
Re: creating a vehicle crashes the server, hmm. - by Lorenc_ - 18.08.2012, 08:18

Forum Jump:


Users browsing this thread: 1 Guest(s)