Page 2 of 2

Re: Script help

Posted: Tue Mar 21, 2023 4:19 pm
by Durik256
gambikules wrote: if indexList[index].typeID % 0x10000 == 0x0002:
Look modulo division in google

Code: Select all

if(indexList[index].typeID % 0x10000 == 0x0002)

Re: Script help

Posted: Tue Mar 21, 2023 4:23 pm
by gambikules
ok. For my code it is

Code: Select all

if (indexList[i].typeID.Substring(0, 4) == "0200")
but i see how its work now.