|
@@ 113-136 (lines=24) @@
|
| 110 |
|
foreach ($structures->rowset->row as $silo) { |
| 111 |
|
$moonGoo = $silo->attributes()->typeID; |
| 112 |
|
switch ($moonGoo) { |
| 113 |
|
case 16634: |
| 114 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16634], 'ccp'); |
| 115 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 116 |
|
$towerWarn = 180000 + (180000 * $towerMulti); |
| 117 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 118 |
|
$gooAmount = $silo->attributes()->quantity; |
| 119 |
|
$gooVolume = 0.1; |
| 120 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 121 |
|
$cleanNumber = number_format($gooCurrent); |
| 122 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 123 |
|
if ($gooCurrent == $towerFull) { |
| 124 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 125 |
|
} |
| 126 |
|
$msg .= "**System: **{$systemName}\n"; |
| 127 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 128 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 129 |
|
// Send the msg to the channel; |
| 130 |
|
$channelID = $this->toDiscordChannel; |
| 131 |
|
$channel = Channel::find($channelID); |
| 132 |
|
$channel->sendMessage($msg, false); |
| 133 |
|
$siloCount++; |
| 134 |
|
sleep(1); |
| 135 |
|
} |
| 136 |
|
break; |
| 137 |
|
case 16643: |
| 138 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16643], 'ccp'); |
| 139 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 137-160 (lines=24) @@
|
| 134 |
|
sleep(1); |
| 135 |
|
} |
| 136 |
|
break; |
| 137 |
|
case 16643: |
| 138 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16643], 'ccp'); |
| 139 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 140 |
|
$towerWarn = 45000 + (45000 * $towerMulti); |
| 141 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 142 |
|
$gooAmount = $silo->attributes()->quantity; |
| 143 |
|
$gooVolume = 0.4; |
| 144 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 145 |
|
$cleanNumber = number_format($gooCurrent); |
| 146 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 147 |
|
if ($gooCurrent == $towerFull) { |
| 148 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 149 |
|
} |
| 150 |
|
$msg .= "**System: **{$systemName}\n"; |
| 151 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 152 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 153 |
|
// Send the msg to the channel; |
| 154 |
|
$channelID = $this->toDiscordChannel; |
| 155 |
|
$channel = Channel::find($channelID); |
| 156 |
|
$channel->sendMessage($msg, false); |
| 157 |
|
$siloCount++; |
| 158 |
|
sleep(1); |
| 159 |
|
} |
| 160 |
|
break; |
| 161 |
|
case 16647: |
| 162 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16647], 'ccp'); |
| 163 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 161-184 (lines=24) @@
|
| 158 |
|
sleep(1); |
| 159 |
|
} |
| 160 |
|
break; |
| 161 |
|
case 16647: |
| 162 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16647], 'ccp'); |
| 163 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 164 |
|
$towerWarn = 22500 + (22500 * $towerMulti); |
| 165 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 166 |
|
$gooAmount = $silo->attributes()->quantity; |
| 167 |
|
$gooVolume = 0.8; |
| 168 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 169 |
|
$cleanNumber = number_format($gooCurrent); |
| 170 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 171 |
|
if ($gooCurrent == $towerFull) { |
| 172 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 173 |
|
} |
| 174 |
|
$msg .= "**System: **{$systemName}\n"; |
| 175 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 176 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 177 |
|
// Send the msg to the channel; |
| 178 |
|
$channelID = $this->toDiscordChannel; |
| 179 |
|
$channel = Channel::find($channelID); |
| 180 |
|
$channel->sendMessage($msg, false); |
| 181 |
|
$siloCount++; |
| 182 |
|
sleep(1); |
| 183 |
|
} |
| 184 |
|
break; |
| 185 |
|
case 16641: |
| 186 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16641], 'ccp'); |
| 187 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 185-208 (lines=24) @@
|
| 182 |
|
sleep(1); |
| 183 |
|
} |
| 184 |
|
break; |
| 185 |
|
case 16641: |
| 186 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16641], 'ccp'); |
| 187 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 188 |
|
$towerWarn = 30000 + (30000 * $towerMulti); |
| 189 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 190 |
|
$gooAmount = $silo->attributes()->quantity; |
| 191 |
|
$gooVolume = 0.6; |
| 192 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 193 |
|
$cleanNumber = number_format($gooCurrent); |
| 194 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 195 |
|
if ($gooCurrent == $towerFull) { |
| 196 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 197 |
|
} |
| 198 |
|
$msg .= "**System: **{$systemName}\n"; |
| 199 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 200 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 201 |
|
// Send the msg to the channel; |
| 202 |
|
$channelID = $this->toDiscordChannel; |
| 203 |
|
$channel = Channel::find($channelID); |
| 204 |
|
$channel->sendMessage($msg, false); |
| 205 |
|
$siloCount++; |
| 206 |
|
sleep(1); |
| 207 |
|
} |
| 208 |
|
break; |
| 209 |
|
case 16640: |
| 210 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16640], 'ccp'); |
| 211 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 209-232 (lines=24) @@
|
| 206 |
|
sleep(1); |
| 207 |
|
} |
| 208 |
|
break; |
| 209 |
|
case 16640: |
| 210 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16640], 'ccp'); |
| 211 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 212 |
|
$towerWarn = 45000 + (45000 * $towerMulti); |
| 213 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 214 |
|
$gooAmount = $silo->attributes()->quantity; |
| 215 |
|
$gooVolume = 0.4; |
| 216 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 217 |
|
$cleanNumber = number_format($gooCurrent); |
| 218 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 219 |
|
if ($gooCurrent == $towerFull) { |
| 220 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 221 |
|
} |
| 222 |
|
$msg .= "**System: **{$systemName}\n"; |
| 223 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 224 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 225 |
|
// Send the msg to the channel; |
| 226 |
|
$channelID = $this->toDiscordChannel; |
| 227 |
|
$channel = Channel::find($channelID); |
| 228 |
|
$channel->sendMessage($msg, false); |
| 229 |
|
$siloCount++; |
| 230 |
|
sleep(1); |
| 231 |
|
} |
| 232 |
|
break; |
| 233 |
|
case 16635: |
| 234 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16635], 'ccp'); |
| 235 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 233-256 (lines=24) @@
|
| 230 |
|
sleep(1); |
| 231 |
|
} |
| 232 |
|
break; |
| 233 |
|
case 16635: |
| 234 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16635], 'ccp'); |
| 235 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 236 |
|
$towerWarn = 180000 + (180000 * $towerMulti); |
| 237 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 238 |
|
$gooAmount = $silo->attributes()->quantity; |
| 239 |
|
$gooVolume = 0.1; |
| 240 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 241 |
|
$cleanNumber = number_format($gooCurrent); |
| 242 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 243 |
|
if ($gooCurrent == $towerFull) { |
| 244 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 245 |
|
} |
| 246 |
|
$msg .= "**System: **{$systemName}\n"; |
| 247 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 248 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 249 |
|
// Send the msg to the channel; |
| 250 |
|
$channelID = $this->toDiscordChannel; |
| 251 |
|
$channel = Channel::find($channelID); |
| 252 |
|
$channel->sendMessage($msg, false); |
| 253 |
|
$siloCount++; |
| 254 |
|
sleep(1); |
| 255 |
|
} |
| 256 |
|
break; |
| 257 |
|
case 16648: |
| 258 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16648], 'ccp'); |
| 259 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 257-280 (lines=24) @@
|
| 254 |
|
sleep(1); |
| 255 |
|
} |
| 256 |
|
break; |
| 257 |
|
case 16648: |
| 258 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16648], 'ccp'); |
| 259 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 260 |
|
$towerWarn = 22500 + (22500 * $towerMulti); |
| 261 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 262 |
|
$gooAmount = $silo->attributes()->quantity; |
| 263 |
|
$gooVolume = 0.8; |
| 264 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 265 |
|
$cleanNumber = number_format($gooCurrent); |
| 266 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 267 |
|
if ($gooCurrent == $towerFull) { |
| 268 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 269 |
|
} |
| 270 |
|
$msg .= "**System: **{$systemName}\n"; |
| 271 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 272 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 273 |
|
// Send the msg to the channel; |
| 274 |
|
$channelID = $this->toDiscordChannel; |
| 275 |
|
$channel = Channel::find($channelID); |
| 276 |
|
$channel->sendMessage($msg, false); |
| 277 |
|
$siloCount++; |
| 278 |
|
sleep(1); |
| 279 |
|
} |
| 280 |
|
break; |
| 281 |
|
case 16633: |
| 282 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16633], 'ccp'); |
| 283 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 281-304 (lines=24) @@
|
| 278 |
|
sleep(1); |
| 279 |
|
} |
| 280 |
|
break; |
| 281 |
|
case 16633: |
| 282 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16633], 'ccp'); |
| 283 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 284 |
|
$towerWarn = 180000 + (180000 * $towerMulti); |
| 285 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 286 |
|
$gooAmount = $silo->attributes()->quantity; |
| 287 |
|
$gooVolume = 0.1; |
| 288 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 289 |
|
$cleanNumber = number_format($gooCurrent); |
| 290 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 291 |
|
if ($gooCurrent == $towerFull) { |
| 292 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 293 |
|
} |
| 294 |
|
$msg .= "**System: **{$systemName}\n"; |
| 295 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 296 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 297 |
|
// Send the msg to the channel; |
| 298 |
|
$channelID = $this->toDiscordChannel; |
| 299 |
|
$channel = Channel::find($channelID); |
| 300 |
|
$channel->sendMessage($msg, false); |
| 301 |
|
$siloCount++; |
| 302 |
|
sleep(1); |
| 303 |
|
} |
| 304 |
|
break; |
| 305 |
|
case 16646: |
| 306 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16646], 'ccp'); |
| 307 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 305-328 (lines=24) @@
|
| 302 |
|
sleep(1); |
| 303 |
|
} |
| 304 |
|
break; |
| 305 |
|
case 16646: |
| 306 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16646], 'ccp'); |
| 307 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 308 |
|
$towerWarn = 22500 + (22500 * $towerMulti); |
| 309 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 310 |
|
$gooAmount = $silo->attributes()->quantity; |
| 311 |
|
$gooVolume = 0.8; |
| 312 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 313 |
|
$cleanNumber = number_format($gooCurrent); |
| 314 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 315 |
|
if ($gooCurrent == $towerFull) { |
| 316 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 317 |
|
} |
| 318 |
|
$msg .= "**System: **{$systemName}\n"; |
| 319 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 320 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 321 |
|
// Send the msg to the channel; |
| 322 |
|
$channelID = $this->toDiscordChannel; |
| 323 |
|
$channel = Channel::find($channelID); |
| 324 |
|
$channel->sendMessage($msg, false); |
| 325 |
|
$siloCount++; |
| 326 |
|
sleep(1); |
| 327 |
|
} |
| 328 |
|
break; |
| 329 |
|
case 16651: |
| 330 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16651], 'ccp'); |
| 331 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 329-352 (lines=24) @@
|
| 326 |
|
sleep(1); |
| 327 |
|
} |
| 328 |
|
break; |
| 329 |
|
case 16651: |
| 330 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16651], 'ccp'); |
| 331 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 332 |
|
$towerWarn = 18000 + (18000 * $towerMulti); |
| 333 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 334 |
|
$gooAmount = $silo->attributes()->quantity; |
| 335 |
|
$gooVolume = 1; |
| 336 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 337 |
|
$cleanNumber = number_format($gooCurrent); |
| 338 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 339 |
|
if ($gooCurrent == $towerFull) { |
| 340 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 341 |
|
} |
| 342 |
|
$msg .= "**System: **{$systemName}\n"; |
| 343 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 344 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 345 |
|
// Send the msg to the channel; |
| 346 |
|
$channelID = $this->toDiscordChannel; |
| 347 |
|
$channel = Channel::find($channelID); |
| 348 |
|
$channel->sendMessage($msg, false); |
| 349 |
|
$siloCount++; |
| 350 |
|
sleep(1); |
| 351 |
|
} |
| 352 |
|
break; |
| 353 |
|
case 16650: |
| 354 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16650], 'ccp'); |
| 355 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 353-376 (lines=24) @@
|
| 350 |
|
sleep(1); |
| 351 |
|
} |
| 352 |
|
break; |
| 353 |
|
case 16650: |
| 354 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16650], 'ccp'); |
| 355 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 356 |
|
$towerWarn = 18000 + (18000 * $towerMulti); |
| 357 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 358 |
|
$gooAmount = $silo->attributes()->quantity; |
| 359 |
|
$gooVolume = 1; |
| 360 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 361 |
|
$cleanNumber = number_format($gooCurrent); |
| 362 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 363 |
|
if ($gooCurrent == $towerFull) { |
| 364 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 365 |
|
} |
| 366 |
|
$msg .= "**System: **{$systemName}\n"; |
| 367 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 368 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 369 |
|
// Send the msg to the channel; |
| 370 |
|
$channelID = $this->toDiscordChannel; |
| 371 |
|
$channel = Channel::find($channelID); |
| 372 |
|
$channel->sendMessage($msg, false); |
| 373 |
|
$siloCount++; |
| 374 |
|
sleep(1); |
| 375 |
|
} |
| 376 |
|
break; |
| 377 |
|
case 16644: |
| 378 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16644], 'ccp'); |
| 379 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 377-400 (lines=24) @@
|
| 374 |
|
sleep(1); |
| 375 |
|
} |
| 376 |
|
break; |
| 377 |
|
case 16644: |
| 378 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16644], 'ccp'); |
| 379 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 380 |
|
$towerWarn = 18000 + (18000 * $towerMulti); |
| 381 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 382 |
|
$gooAmount = $silo->attributes()->quantity; |
| 383 |
|
$gooVolume = 1; |
| 384 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 385 |
|
$cleanNumber = number_format($gooCurrent); |
| 386 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 387 |
|
if ($gooCurrent == $towerFull) { |
| 388 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 389 |
|
} |
| 390 |
|
$msg .= "**System: **{$systemName}\n"; |
| 391 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 392 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 393 |
|
// Send the msg to the channel; |
| 394 |
|
$channelID = $this->toDiscordChannel; |
| 395 |
|
$channel = Channel::find($channelID); |
| 396 |
|
$channel->sendMessage($msg, false); |
| 397 |
|
$siloCount++; |
| 398 |
|
sleep(1); |
| 399 |
|
} |
| 400 |
|
break; |
| 401 |
|
case 16652: |
| 402 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16652], 'ccp'); |
| 403 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 401-424 (lines=24) @@
|
| 398 |
|
sleep(1); |
| 399 |
|
} |
| 400 |
|
break; |
| 401 |
|
case 16652: |
| 402 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16652], 'ccp'); |
| 403 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 404 |
|
$towerWarn = 18000 + (18000 * $towerMulti); |
| 405 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 406 |
|
$gooAmount = $silo->attributes()->quantity; |
| 407 |
|
$gooVolume = 1; |
| 408 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 409 |
|
$cleanNumber = number_format($gooCurrent); |
| 410 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 411 |
|
if ($gooCurrent == $towerFull) { |
| 412 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 413 |
|
} |
| 414 |
|
$msg .= "**System: **{$systemName}\n"; |
| 415 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 416 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 417 |
|
// Send the msg to the channel; |
| 418 |
|
$channelID = $this->toDiscordChannel; |
| 419 |
|
$channel = Channel::find($channelID); |
| 420 |
|
$channel->sendMessage($msg, false); |
| 421 |
|
$siloCount++; |
| 422 |
|
sleep(1); |
| 423 |
|
} |
| 424 |
|
break; |
| 425 |
|
case 16639: |
| 426 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16639], 'ccp'); |
| 427 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 425-448 (lines=24) @@
|
| 422 |
|
sleep(1); |
| 423 |
|
} |
| 424 |
|
break; |
| 425 |
|
case 16639: |
| 426 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16639], 'ccp'); |
| 427 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 428 |
|
$towerWarn = 45000 + (45000 * $towerMulti); |
| 429 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 430 |
|
$gooAmount = $silo->attributes()->quantity; |
| 431 |
|
$gooVolume = 0.4; |
| 432 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 433 |
|
$cleanNumber = number_format($gooCurrent); |
| 434 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 435 |
|
if ($gooCurrent == $towerFull) { |
| 436 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 437 |
|
} |
| 438 |
|
$msg .= "**System: **{$systemName}\n"; |
| 439 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 440 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 441 |
|
// Send the msg to the channel; |
| 442 |
|
$channelID = $this->toDiscordChannel; |
| 443 |
|
$channel = Channel::find($channelID); |
| 444 |
|
$channel->sendMessage($msg, false); |
| 445 |
|
$siloCount++; |
| 446 |
|
sleep(1); |
| 447 |
|
} |
| 448 |
|
break; |
| 449 |
|
case 16636: |
| 450 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16636], 'ccp'); |
| 451 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 449-472 (lines=24) @@
|
| 446 |
|
sleep(1); |
| 447 |
|
} |
| 448 |
|
break; |
| 449 |
|
case 16636: |
| 450 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16636], 'ccp'); |
| 451 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 452 |
|
$towerWarn = 180000 + (180000 * $towerMulti); |
| 453 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 454 |
|
$gooAmount = $silo->attributes()->quantity; |
| 455 |
|
$gooVolume = 0.1; |
| 456 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 457 |
|
$cleanNumber = number_format($gooCurrent); |
| 458 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 459 |
|
if ($gooCurrent == $towerFull) { |
| 460 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 461 |
|
} |
| 462 |
|
$msg .= "**System: **{$systemName}\n"; |
| 463 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 464 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 465 |
|
// Send the msg to the channel; |
| 466 |
|
$channelID = $this->toDiscordChannel; |
| 467 |
|
$channel = Channel::find($channelID); |
| 468 |
|
$channel->sendMessage($msg, false); |
| 469 |
|
$siloCount++; |
| 470 |
|
sleep(1); |
| 471 |
|
} |
| 472 |
|
break; |
| 473 |
|
case 16649: |
| 474 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16649], 'ccp'); |
| 475 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 473-496 (lines=24) @@
|
| 470 |
|
sleep(1); |
| 471 |
|
} |
| 472 |
|
break; |
| 473 |
|
case 16649: |
| 474 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16649], 'ccp'); |
| 475 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 476 |
|
$towerWarn = 18000 + (18000 * $towerMulti); |
| 477 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 478 |
|
$gooAmount = $silo->attributes()->quantity; |
| 479 |
|
$gooVolume = 1; |
| 480 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 481 |
|
$cleanNumber = number_format($gooCurrent); |
| 482 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 483 |
|
if ($gooCurrent == $towerFull) { |
| 484 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 485 |
|
} |
| 486 |
|
$msg .= "**System: **{$systemName}\n"; |
| 487 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 488 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 489 |
|
// Send the msg to the channel; |
| 490 |
|
$channelID = $this->toDiscordChannel; |
| 491 |
|
$channel = Channel::find($channelID); |
| 492 |
|
$channel->sendMessage($msg, false); |
| 493 |
|
$siloCount++; |
| 494 |
|
sleep(1); |
| 495 |
|
} |
| 496 |
|
break; |
| 497 |
|
case 16653: |
| 498 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16653], 'ccp'); |
| 499 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 497-520 (lines=24) @@
|
| 494 |
|
sleep(1); |
| 495 |
|
} |
| 496 |
|
break; |
| 497 |
|
case 16653: |
| 498 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16653], 'ccp'); |
| 499 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 500 |
|
$towerWarn = 18000 + (18000 * $towerMulti); |
| 501 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 502 |
|
$gooAmount = $silo->attributes()->quantity; |
| 503 |
|
$gooVolume = 1; |
| 504 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 505 |
|
$cleanNumber = number_format($gooCurrent); |
| 506 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 507 |
|
if ($gooCurrent == $towerFull) { |
| 508 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 509 |
|
} |
| 510 |
|
$msg .= "**System: **{$systemName}\n"; |
| 511 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 512 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 513 |
|
// Send the msg to the channel; |
| 514 |
|
$channelID = $this->toDiscordChannel; |
| 515 |
|
$channel = Channel::find($channelID); |
| 516 |
|
$channel->sendMessage($msg, false); |
| 517 |
|
$siloCount++; |
| 518 |
|
sleep(1); |
| 519 |
|
} |
| 520 |
|
break; |
| 521 |
|
case 16638: |
| 522 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16638], 'ccp'); |
| 523 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 521-544 (lines=24) @@
|
| 518 |
|
sleep(1); |
| 519 |
|
} |
| 520 |
|
break; |
| 521 |
|
case 16638: |
| 522 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16638], 'ccp'); |
| 523 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 524 |
|
$towerWarn = 45000 + (45000 * $towerMulti); |
| 525 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 526 |
|
$gooAmount = $silo->attributes()->quantity; |
| 527 |
|
$gooVolume = 0.4; |
| 528 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 529 |
|
$cleanNumber = number_format($gooCurrent); |
| 530 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 531 |
|
if ($gooCurrent == $towerFull) { |
| 532 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 533 |
|
} |
| 534 |
|
$msg .= "**System: **{$systemName}\n"; |
| 535 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 536 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 537 |
|
// Send the msg to the channel; |
| 538 |
|
$channelID = $this->toDiscordChannel; |
| 539 |
|
$channel = Channel::find($channelID); |
| 540 |
|
$channel->sendMessage($msg, false); |
| 541 |
|
$siloCount++; |
| 542 |
|
sleep(1); |
| 543 |
|
} |
| 544 |
|
break; |
| 545 |
|
case 16637: |
| 546 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16637], 'ccp'); |
| 547 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 545-568 (lines=24) @@
|
| 542 |
|
sleep(1); |
| 543 |
|
} |
| 544 |
|
break; |
| 545 |
|
case 16637: |
| 546 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16637], 'ccp'); |
| 547 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 548 |
|
$towerWarn = 45000 + (45000 * $towerMulti); |
| 549 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 550 |
|
$gooAmount = $silo->attributes()->quantity; |
| 551 |
|
$gooVolume = 0.4; |
| 552 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 553 |
|
$cleanNumber = number_format($gooCurrent); |
| 554 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 555 |
|
if ($gooCurrent == $towerFull) { |
| 556 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 557 |
|
} |
| 558 |
|
$msg .= "**System: **{$systemName}\n"; |
| 559 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 560 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 561 |
|
// Send the msg to the channel; |
| 562 |
|
$channelID = $this->toDiscordChannel; |
| 563 |
|
$channel = Channel::find($channelID); |
| 564 |
|
$channel->sendMessage($msg, false); |
| 565 |
|
$siloCount++; |
| 566 |
|
sleep(1); |
| 567 |
|
} |
| 568 |
|
break; |
| 569 |
|
case 16642: |
| 570 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16642], 'ccp'); |
| 571 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
|
@@ 569-592 (lines=24) @@
|
| 566 |
|
sleep(1); |
| 567 |
|
} |
| 568 |
|
break; |
| 569 |
|
case 16642: |
| 570 |
|
$typeName = dbQueryField('SELECT typeName FROM invTypes WHERE typeID = :id', 'typeName', [':id' => 16642], 'ccp'); |
| 571 |
|
$systemName = dbQueryField('SELECT solarSystemName FROM mapSolarSystems WHERE solarSystemID = :id', 'solarSystemName', [':id' => $structures->attributes()->locationID], 'ccp'); |
| 572 |
|
$towerWarn = 18000 + (18000 * $towerMulti); |
| 573 |
|
if ($silo->attributes()->quantity >= $towerWarn) { |
| 574 |
|
$gooAmount = $silo->attributes()->quantity; |
| 575 |
|
$gooVolume = 1; |
| 576 |
|
$gooCurrent = $gooAmount * $gooVolume; |
| 577 |
|
$cleanNumber = number_format($gooCurrent); |
| 578 |
|
$msg = "**{$typeName} Silo Nearing Capacity**\n"; |
| 579 |
|
if ($gooCurrent == $towerFull) { |
| 580 |
|
$msg = "**{$typeName} Silo Full**\n"; |
| 581 |
|
} |
| 582 |
|
$msg .= "**System: **{$systemName}\n"; |
| 583 |
|
$msg .= "**Capacity: **{$cleanNumber}/{$cleanFull}m3\n"; |
| 584 |
|
$this->logger->addInfo("{$typeName} Silo nearing capacity in {$systemName}"); |
| 585 |
|
// Send the msg to the channel; |
| 586 |
|
$channelID = $this->toDiscordChannel; |
| 587 |
|
$channel = Channel::find($channelID); |
| 588 |
|
$channel->sendMessage($msg, false); |
| 589 |
|
$siloCount++; |
| 590 |
|
sleep(1); |
| 591 |
|
} |
| 592 |
|
break; |
| 593 |
|
} |
| 594 |
|
} |
| 595 |
|
} |