Jump to content

[Need Help] Name Vehicle in Chat


XpLoD

Recommended Posts

Hey guys !

I have this command:

[Command("createvehicle")] // '/createvehicle cheetah'
        public void CMD_CreateVehicle(Client client, string vehicle_name)
        {
            // If the data exists for a personal vehicle. Delete it.
            if (client.HasData("PersonalVehicle"))
            {
                Vehicle previous_vehicle = client.GetData("PersonalVehicle");
                previous_vehicle.Delete();
            }

            // Spawn a new vehicle.
            uint hash = NAPI.Util.GetHashKey(vehicle_name);
            Vehicle veh = NAPI.Vehicle.CreateVehicle(hash, client.Position.Around(5), 0, 0, 0);
            client.SendChatMessage("You spawn {vehicle_name}!");

            // Assign the new vehicle to the client.
            client.SetData("PersonalVehicle", veh);
        }

So, the {vehicle_name} is not working, how can i put the real name of the vehicle in the chat ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...