https://github.com/yashassamaga/samp-massmoverotateobjects
Takes input.pwn and gives output.pwn; corrects positions and rotations
https://github.com/yashassamaga/samp-massmoverotateobjects
Last synced: about 2 months ago
JSON representation
Takes input.pwn and gives output.pwn; corrects positions and rotations
- Host: GitHub
- URL: https://github.com/yashassamaga/samp-massmoverotateobjects
- Owner: YashasSamaga
- Created: 2017-03-16T17:04:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-11T15:44:19.000Z (over 7 years ago)
- Last Synced: 2025-01-30T17:39:23.973Z (4 months ago)
- Language: C++
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SAMP-MassMoveRotateObjects
Takes input.pwn and gives output.pwn; corrects positions and rotations#### Sample Input (input.pwn)
```CreateObject(1685, -30.56665, 61.68634, -4.64510, 0.00000, 0.00000, 178.53790);
CreateObject(1685, -30.61328, 61.70898, -3.14183, 0.00000, 0.00000, 357.96332);
CreateObject(1685, -27.43872, 58.34119, -3.16016, 0.00000, 0.00000, 178.88976);
CreateObject(1685, -27.33105, 58.32916, -4.64510, 0.00000, 0.00000, 358.46124);
CreateObject(1685, -25.49390, 58.29718, -3.14183, 0.00000, 0.00000, 359.07529);
```#### Sample Output (output.pwn)
Correction Factors: 10.0 10.0 10.0 5.0 5.0 5.0
```CreateObject(1685,-20.56665, 71.68634, 5.3549, 5, 5, 183.5379);
CreateObject(1685,-20.61328, 71.70898, 6.85817, 5, 5, 362.96332);
CreateObject(1685,-17.43872, 68.34119, 6.83984, 5, 5, 183.88976);
CreateObject(1685,-17.33105, 68.32916, 5.3549, 5, 5, 363.46124);
CreateObject(1685,-15.4939, 68.29718, 6.85817, 5, 5, 364.07529);
```