Put this at the bottom of your of your weapon file **Just incase you were wondering, not Weapon.cs, but the actual weapon your giving the bottom print to. Code: -------------------------------------------------------------------------------- //weapon info. function YourWeaponImage::onMount(%this,%obj,%slot) { Parent::onMount(%this,%obj,%slot); CommandToClient(%obj.client, 'BottomPrint', "Your Weapon - Info.", 3, 2 ); } -------------------------------------------------------------------------------- *Note- For the numbers in the CommandToClient: The second number is the amount of lines will show. The first number is amount of time it appears in seconds. You can do this with pack/deployables too! The_Force *Vehicle Bottom Prinint: -Drumstix42 To have a bottom print for when you mount a vehicle, open up vehicle.cs Goto one of the ::playerMounted functions and add in something like this: centerPrint(%player.client, "VehicleName: Description Here", 5, 2 ); or bottomPrint(%player.client, "VehicleName: Description Here", 5, 2 );