#Understanding IL gobbledygook

1 messages · Page 1 of 1 (latest)

orchid lodge
#

Can you use IL hooks to add an or to a If(or){} check?
I mean like:

if(original check||new condition added with IL hook)
{
bit of original code
}

I don't really know much about how it works. Sorry if this is a bad question. I hope you have a nice day.

dim robin
#

technically you can i think

#

you can use brtrue / brtrue_s or brfalse / brfalse_s opcodes to skip to a certain part of the ilcode thing if a condition above it is true or false (requires illabels and also a bit complicated), or just replace the condition you want to change by removing it and putting a delegate in its place