Quote:
Originally Posted by Jizukane
wargen20 should i paste the code in visual studio code or how should i do it to download it?
|
just read any guide on google how to run a python script. it's pretty easy. first link and 1 minute of reading will help you with that.
or read here:
you don't even need visual studio code.
the only thing you need is installed python.
just run cmd (winkey + R, type "cmd"...or simply cmd in menu start)
cd path-to-a-folder-where-you-have-python-script-saved
if you don't have win32gui installed then in cmd type "pip install pywin32"
then just "python name-of-a-python-script.py",
for example if name of your script is "betting-script.py" just type python betting-script.py
that's all
Quote:
Originally Posted by wujekstalin12
Is it possible to get different options than in the file?
for example for armor: Reduces chance to beeing blinde... (and the most important: reduced chance of all Stun and reduced chance of beeing frozen?
Thanks for advice..
|
here are all (probably. not sure) armor shell options.
just add them in the class in file
Code:
ENHANCEDMELEEDEF = '.1.'
ENHANCEDLONGRANGEDEF = '.2.'
ENHANCEDMAGICDEF = '.3.'
OVERALLDEF = '.4.'
REDUCEDCHANCESMALLOPENWOUND = '.5.'
REDUCEDCHANCEOPENWOUNDSMALLOPENWOUND = '.6.'
REDUCESCHANCEALLOPENWOUNDS = '.7.'
REDUCESCHANCEOFABLACKOUT = '.8.'
REDUCEDCHANCEOFALLSTUN = '.9.'
REDUCEDCHANCEOFDEADMANSHAND = '.10.'
REDUCEDCHANCEOFBEINGFROZEN = '.11.'
REDUCEDCHANCEOFBEINGBLINDED = '.12.'
REDUCEDCHANCEOFSPASM = '.13.'
REDUCEDCHANCEOFWEAKARMOR = '.14.'
REDUCEDCHANCEOFSHOCK = '.15.'
REDUCEDCHANCEOFPARALYSISPOISON = '.16.'
REDUCESCHANCEOFALLNEGATIVEEFFECT = '.17.'
INCREASEDHPRECOVERYRATEWHILERESTING = '.18.'
INCREASEDNATURALHPRECOVERYRATE = '.19.'
INCREASEDMPRECOVERYRATEWHILERESTING = '.20.'
INCREASEDNATURALMPRECOVERYRATE = '.21.'
HPRECOVERYWHILEDEFENDING = '.22.'
REDUCECHANCECRITIALHIT = '.23.'
FIRERES = '.24.'
WATERRES = '.25.'
LIGHTRES = '.26.'
SHADOWRES = '.27.'
ALLRES = '.28.'
DECREASEDPRIDEREDUCTION = '.29.'
DECREASEDCONSUMPTIONOFPRODUCTIONPOINT = '.30.'
INCREASEDPRODUCTIONCHANCE = '.31.'
INCREASEDITEMRECOVERY = '.32.'
OVERALLDEFPVP = '.33.'
DODGEMELEEATTACKPVP = '.34.'
DODGELONGRANGEPVP = '.35.'
IGNOREMAGICPVP = '.36.'
DODGEALLATTACKPVP = '.37.'
PROTECTMANA = '.38.'
maybe tomorrow I will write a GUI version of this tool. I am too lazy right now but if I will be bored I will do that