Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
1,238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `weaponsettings` (
  2. `Name` varchar(24) NOT NULL,
  3. `WeaponID` tinyint(4) NOT NULL,
  4. `PosX` float DEFAULT '-0.116',
  5. `PosY` float DEFAULT '0.189',
  6. `PosZ` float DEFAULT '0.088',
  7. `RotX` float DEFAULT '0.0',
  8. `RotY` float DEFAULT '44.5',
  9. `RotZ` float DEFAULT '0.0',
  10. `Bone` tinyint(4) NOT NULL DEFAULT '1',
  11. `Hidden` tinyint(4) NOT NULL DEFAULT '0',
  12. UNIQUE `weapon`(`Name`, `WeaponID`)
  13. ) DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement