I'm reading a lot of "you know that" "did you see" "I've encountered many bugs" "he can't code".... but I'm still asking for proof
1) If I go inside his forums there is even a checklist by an autistic user on why he wouldn't have touched certain things and so on patch by patch until 7.4 by Wesp checking
every patch note (even if I don't agree with some of his reasoning, at least he tried:
http://www.tessmage.com/forum/index.php?topic=57843.0).
2) There is even code being compared (e.g:
True Patch version:
#SANTAMONICA: used to determine if Bertram is in the oil tank or not
def bertramOutOfHiding():
npc = Find("Bertram")
gate = Find("gasstationgate")
if(G.Tourette_Wins == 1 or G.Therese_Dead == 1 or G.Jeanette_Dead == 1):
if(npc):
npc.ScriptUnhide()
gate.Unlock()
knox = Find("Knox")
if(knox):
if(G.Knox_Quest < 4 or G.Knox_Quest > 6):
knox.ScriptHide()
else:
knox.ScriptUnhide()
elif(1):
npc.ScriptHide()
-----------------------------------------------------------------------------------------------------------------------------
Unofficial Patch version:
#SANTAMONICA: used to determine if Bertram is in the oil tank or not, changed by wesp
def bertramOutOfHiding():
if(G.Story_State >= 10 and not G.SM_Gone):
G.SM_Gone = 1
copcars = __main__.FindEntitiesByName("copcar")
for copcar in copcars:
copcar.Kill()
npc = Find("Bertram")
if(G.Tourette_Wins == 1 or G.Therese_Dead == 1 or G.Jeanette_Dead == 1):
gate = Find("gasstationgate")
pad = Find("padlock")
if npc:
pcon = Find("bertrams_computer_on")
pcoff = Find("bertrams_computer_off")
npc.ScriptUnhide()
pcon.ScriptHide()
pcoff.ScriptUnhide()
gate.Unlock()
if pad: pad.Unlock()
knox = Find("Knox")
if knox:
if(G.Knox_Quest < 4 or G.Knox_Quest > 6):
knox.ScriptHide()
else:
knox.ScriptUnhide()
else:
npc.ScriptHide()
for the sapient users. But Wesp already told he is no coder so I guess that's ok
3) Can someone show me bugs or errors that happens in gold patch, give me one single report of a certain bug so I can test it myself and why not, send it to tessera?