XpLoD 0 Posted April 19 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 ? Share this post Link to post Share on other sites
liar 0 Posted April 19 client.SendChatMessage($"You spawn {vehicle_name}!"); Share this post Link to post Share on other sites