Jump to content


Photo

Flag flag flag flagging flag


  • Please log in to reply
5 replies to this topic

#1 temnix

temnix
  • Member
  • 983 posts

Posted 02 June 2017 - 11:43 AM

Doesn't anybody know the Weidu code for setting a flag in a file?

 

 

Attached Images

  • Диптих Лорана Фроймонта. Правая створка. Портрет Лорана Фроймонта ок.1450-1460) (49.3 х 31.5) (Брюссель, Корол.музей изящ.искусств).jpg


#2 The Imp

The Imp

    Not good, see EVIL is better. You'll LIVE.

  • Member
  • 5151 posts

Posted 02 June 2017 - 11:51 AM

I do... the tweak packs have multiple examples... and placed items for example have flags in the placement functions.
Now of course, if you actually want a good answer to your question, you should have pickled a specific flag you want to place to a file, and request an example from that... but no, you didn't think that of course, as you couldn't bother to learn to approximate the others from an example.
And you do understand that the above picture can be seen as an offensive figure ? Guess why ?

Edited by The Imp, 02 June 2017 - 12:03 PM.

Yep, Jarno Mikkola. my Mega Mod FAQ. Use of the BWS, and how to use it(scroll down that post a bit). 
OK, desert dweller, welcome to the sanity, you are free to search for the limit, it's out there, we drew it in the sand. Ouh, actually it was still snow then.. but anyways.


#3 GeN1e

GeN1e

    A very GAR character

  • Modder
  • 1604 posts

Posted 02 June 2017 - 03:02 PM

WRITE_xxxx offset THIS | BITyy // to set
WRITE_xxxx offset THIS & `BITyy // to unset

Retired from modding.


#4 temnix

temnix
  • Member
  • 983 posts

Posted 03 June 2017 - 11:21 AM

I do... the tweak packs have multiple examples... and placed items for example have flags in the placement functions.
Now of course, if you actually want a good answer to your question, you should have pickled a specific flag you want to place to a file, and request an example from that... but no, you didn't think that of course, as you couldn't bother to learn to approximate the others from an example.
And you do understand that the above picture can be seen as an offensive figure ? Guess why ?

 

Because he's hiding a crucifix shaped as a penis on one end between his palms?

 

...To Ardanis: how about an example of use? The offset for the flags of that info trigger is 17f8, 4 bytes. The flag number is 7 (Trigger silent). I need to enable it.


Edited by temnix, 03 June 2017 - 11:46 AM.


#5 GeN1e

GeN1e

    A very GAR character

  • Modder
  • 1604 posts

Posted 03 June 2017 - 11:59 AM

(facepalm)
WRITE_LONG 0x17f8 THIS | BIT7

"THIS" is the value read at this offset, hence the name.

Edited by GeN1e, 03 June 2017 - 12:01 PM.

Retired from modding.


#6 temnix

temnix
  • Member
  • 983 posts

Posted 04 June 2017 - 11:29 AM

Thank you.