Moderators: Nexuiz Moderators, Moderators
Please don't. Local/dev use, fine, but show some respect and play Nexuiz "as-is-vanilla" online, if its not on a modified server already plox.Ed wrote:You could replace the gibs with other models on a file by file basis. This would allow you to have confetti, popcorn, whatever.
Darcshadow7 wrote:Well, i still want blood, but no gibs. As those cause more lag.
cd /path/to/nexuiz
cd data/models/gibs
mkdir backups
for file in $(find -regex .*md[3l]); do mv $file backups && touch $file; done
cd /path/to/nexuiz
cd data/models/gibs
for file in $(find -regex .*md3); do cp ../shotorg_adjuster.md3 $file; done
for file in $(find -regex .*mdl); do cp ../bullet.mdl $file; done
Darcshadow7 wrote:Wow, it made Nexuiz crash.
[-z-] wrote:
- Code: Select all
cd /path/to/nexuiz
cd data/models/gibs
for file in $(find -regex .*md3); do cp ../shotorg_adjuster.md3 $file; done
for file in $(find -regex .*mdl); do cp ../bullet.mdl $file; done
cd /path/to/nexuiz
cd data/models/gibs
find -name '*.md3' -exec cp ../null.md3 {} \;
find -name '*.mdl' -exec cp ../bullet.mdl {} \;

Mr. Bougo wrote:EDIT: null.md3 is even better :p
Mr. Bougo wrote:EDIT2: and I believe you can even use it for .mdl, the extensions don't matter I think.
Mr. Bougo wrote:Also, what if the directory hierarchy is inexistant? Hmm..
Return to Nexuiz - Support / Bugs