XpLoD Posted April 19, 2019 Share Posted April 19, 2019 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 More sharing options...
liar Posted April 19, 2019 Share Posted April 19, 2019 client.SendChatMessage($"You spawn {vehicle_name}!"); Link to comment Share on other sites More sharing options...
XpLoD Posted April 20, 2019 Author Share Posted April 20, 2019 Thank you ! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now