Need help I don't know what the WarpBField and MapsBField until Senilinea. I'm currently using WarpBField=2101247, MapsBField=2101247 but its just until Arcane.
Printable View
Need help I don't know what the WarpBField and MapsBField until Senilinea. I'm currently using WarpBField=2101247, MapsBField=2101247 but its just until Arcane.
Use this : 2097151
This is a bitmask. In the binary system, you need to set the bits corresponding to the numbers of your locations equal to 1.
For example, only 12 locations will look like this in binary code: 100000000000 (2048 in DEC).
Locations 1-12: 111111111111 (4095 in DEC), etc.
You can use no more than 32 bits (usually 17, 18, 20 numbers are allocated for new locations).
In const.scp you can specify which location at what level will open - you will need to specify only one bit (or more if you open several locations at the same time at once). For example, 1024 (bin 10000000000) for the Porta Inferno or 2048 (bin 100000000000) for a AT.
Note that bits are counted from right to left.