This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: BETA V 120 B 19 - changeset 91 (bafa324c29de)  (Read 6521 times)

gorq

  • Contributors
  • Wiki Incarnate
  • *****
  • Posts: 141
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #30 on: March 10, 2011, 12:01:28 am »
I have noticed that adts have some weird bug ingame with "fake water" Some zones down to z=0 makes the character change the camera and sometimes there are "fake invisible walls" at the edge of the adt. I don't know if it is a regular bug but i have noticed it in an adt (maybe it has been corrupted)
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

schlumpf

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 2967
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #31 on: March 10, 2011, 12:11:58 am »
This sounds like the MFBO chunk. Its used in outlands to prevent the camera from falling down to 0 after stepping over the edge.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

gorq

  • Contributors
  • Wiki Incarnate
  • *****
  • Posts: 141
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #32 on: March 11, 2011, 12:11:06 am »
Sometimes when i select an object and open "detal info" noggit freezes or crashes
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

gorq

  • Contributors
  • Wiki Incarnate
  • *****
  • Posts: 141
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #33 on: March 13, 2011, 02:34:15 pm »
I have made some tests with doodads and adts edge. First i thinked that if the bounding box of the objects does not reach de adts edge it should work nice. It was wrong. It does not matter if the bounding box touches or approaches or not the adt edge. It seems that makes object copies randomly..:S
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

schlumpf

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 2967
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #34 on: March 13, 2011, 02:44:07 pm »
Yes, detection of if an object is on a specific adt seems to be wrong. Cromon did that.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

lordshark

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 24
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #35 on: March 13, 2011, 03:02:29 pm »
Greetings,
NoggIT 120 haven't any display problems with own objects (m2-objects). i have test it, its works. But the duplicate bug and the copy & past + the crash-bug must fix it.
With own WMO-Object will i test it.

shark
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Steff

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 4551
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #36 on: March 14, 2011, 07:47:07 pm »
But the duplicate bug and the copy & past + the crash-bug must fix it.

What do you meen with this sentence?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
Please mark as solved if solved.
Don't ask if you could ask a question... JUST ask the Question.
You can send me also offline messages. I will answer if I get online.
Skype: project.modcraft
Discord: steff#6954

lordshark

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 24
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #37 on: March 15, 2011, 07:04:07 am »
Greetings,
i mean with the duplicate bug the bug, if you save that noggit spawn a lot of the objects self.
And with Copy and Past-Bug mean it, that if you copy and past a object that the height etc. not the same is.

man, my englisch is f*ck up.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

TheBuG

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 469
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #38 on: March 15, 2011, 11:26:11 pm »
Quote from: "lordshark"
Greetings,
i mean with the duplicate bug the bug, if you save that noggit spawn a lot of the objects self.
And with Copy and Past-Bug mean it, that if you copy and past a object that the height etc. not the same is.

man, my englisch is f*ck up.

I think he means that objects get duplicated when they're at an ADT border, and that .m2s are not copied with the same rotation and scale.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

schlumpf

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 2967
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #39 on: March 15, 2011, 11:53:22 pm »
To fix duplicate doodads caused by the unique id bug:
Code: [Select]
#!/bin/bash
PWD=`pwd`
cd "$1"
for adt in `ls *.adt`; do
fileinfo "$adt"
txt=`echo "$adt" | sed -e "s/.adt/.txt/g"`
START=`grep -n MDDF "$txt" | sed -e "s/:.*//g"`
END=`grep -n MODF "$txt" | sed -e "s/:.*//g"`
head -n $(($START - 1)) "$txt" > start
tail -n +$END "$txt" > end
tail -n +$(($START+1)) "$txt" | head -n $(($END - $START - 2)) > middle
cat middle | sort -k 3 | uniq -f 2 > middle_
cat start > "$txt"
echo MDDF `cat middle_ | wc -l ` >> "$txt"
cat middle_ >> "$txt"
echo "" >> "$txt"
cat end >> "$txt"
loadinfo "$adt"
rm end middle middle_ start "$txt"
done
cd "$PWD"
The script takes the path with adts to be fixed as parameter.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Skullbot

  • Registred Member
  • Polygonshifter
  • *****
  • Posts: 54
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #40 on: March 22, 2011, 06:50:49 pm »
Seems to be pretty good once again, I've tested it quickly, I've not so much time thoses days with thoses f*ckin' exams -_-'.

I'll see if I can find a day or two in order to check this release deeper ;)
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Steff

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 4551
    • View Profile
Re: BETA V 120 B 19 - changeset 91 (bafa324c29de)
« Reply #41 on: March 22, 2011, 08:42:20 pm »
There will be B20 the next days so dont tst too much on this :)
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
Please mark as solved if solved.
Don't ask if you could ask a question... JUST ask the Question.
You can send me also offline messages. I will answer if I get online.
Skype: project.modcraft
Discord: steff#6954