I mixed up the logs
the CORRECT way is
NPC Code:
LOG c = x
b
when b=10, x=2, c=100. b is the starting number, x is the power of that number to find 100
so:
NPC Code:
LOG 100 = 2
10
LOG has a base (b) of 10 normally.
The LOG conversion is as follows
NPC Code:
LOG c / LOG q
b b
Where 'q' is the base that you want (normally in place of 10)
when b=10, c=49, and q=7:
NPC Code:
LOG (49) / LOG (7)
10 10
That will give you the value of
NPC Code:
LOG (49) which equals 2.
7
Ok, I'm done with logs.
If its wrong, correct me I guess, as for the tailor expansion, hahaha, funny

.
(Sorry about the edits, I wanted the equations to look correct.)