How to NOT ask for help

stealthy

ISX Specialist
What to NOT do on IRC

Please, if you're going to come on IRC for any reason, don't be a dumbass.
Using your in-game Corp and Char name is just retarded, let this be a lesson.

(11:08:06 AM) Bel: hm, where is the corphangararray object definition?
(11:09:55 AM) RN-lionora: in obj_Jetcan.iss?
(11:10:08 AM) RN-lionora: I found it here
(11:10:41 AM) Bel: k thx... hm my search didn't find it :p pretty odd :p
(11:10:52 AM) RN-lionora: For corp hangar as drop off, I also got this problem
(11:11:17 AM) RN-lionora: and get away just with modding Lax's sample code (and putting it into evebot)
(11:11:54 AM) RN-lionora: like that: function TransferAmmoFromCorpHangarArray()
(11:11:54 AM) RN-lionora: {
(11:11:54 AM) RN-lionora: variable string ContainerName = "Corporate Hangar Array"
(11:11:54 AM) RN-lionora: variable index:item Items
(11:11:54 AM) RN-lionora: variable iterator Item
(11:11:54 AM) RN-lionora: variable int ContainerCargoCount
(11:11:54 AM) RN-lionora: variable int amount
(11:11:54 AM) RN-lionora: ; Make sure that there is actually a cargo container there that matches the name we set
(11:11:54 AM) RN-lionora: if (!${Entity[${ContainerName}](exists)})
(11:11:54 AM) RN-lionora: {
(11:11:55 AM) RN-lionora: UI:UpdateConsoleIRC["Cannot find ${ContainerName} at resupply point!"]
(11:11:57 AM) RN-lionora: return
(11:11:58 AM) RN-lionora: }
(11:11:59 AM) RN-lionora: UI:UpdateConsoleIRC["obj_Cargo DEBUG:Found ${ContainerName}"
(11:12:00 AM) RN-lionora: call Ship.OpenCargo
(11:12:01 AM) RN-lionora: wait 10
(11:12:02 AM) RN-lionora:
(11:12:03 AM) RN-lionora: ; If it exists, get close enough to it!
(11:12:04 AM) RN-lionora: if (${Entity[${ContainerName}].Distance} > 1300)
(11:12:05 AM) RN-lionora: {
(11:12:06 AM) RN-lionora: UI:UpdateConsoleIRC["Approaching ${ContainerName}"]
(11:12:07 AM) RN-lionora: ;Not using Ship.Approach here.Yet
(11:12:08 AM) RN-lionora: call Ship.Approach Entity[${ContainerName}].ID
(11:12:09 AM) RN-lionora: }
(11:12:10 AM) RN-lionora:
(11:12:11 AM) RN-lionora: ; Always make sure that the container's cargo is accessible. If not, then open the cargo to populate the window
(11:12:13 AM) RN-lionora: Entity[${ContainerName}]:OpenCargo
(11:12:14 AM) RN-lionora: wait 50
(11:12:15 AM) RN-lionora: ContainerCargoCount:Set[${Entity[${ContainerName}].GetCargo[Items]}]
(11:12:17 AM) RN-lionora: Items:GetIterator[Item]
(11:12:18 AM) RN-lionora: if ${Item:First(exists)}
(11:12:19 AM) RN-lionora: {
(11:12:20 AM) RN-lionora: do
(11:12:21 AM) RN-lionora: {
(11:12:22 AM) RN-lionora: ;UI:UpdateConsole["Found ${Item.Value.Name} in hangar"]
(11:12:23 AM) RN-lionora: ;if ${Item.Value.Name.EqualCS["Devastator Cruise Missile"]}
(11:12:24 AM) RN-lionora:
(11:12:25 AM) RN-lionora: if ${Config.Common.ChargeType.Equal[${Item.Value.Name}]}
(11:12:26 AM) RN-lionora: {
(11:12:27 AM) RN-lionora: UI:UpdateConsoleIRC["found ${Item.Value.Name} "]
(11:12:28 AM) RN-lionora: ;TODO:take charge volume and free cargo in amount
(11:12:29 AM) RN-lionora: ;not simple 13300
(11:12:30 AM) RN-lionora: amount:Set[${Math.Calc[${Ship.CargoFreeSpace}/${Item.Value.Volume}]}]
(11:12:32 AM) RN-lionora: UI:UpdateConsoleIRC["Loading ${amount} charges"]
(11:12:33 AM) RN-lionora: Item.Value:MoveTo[MyShip,${amount}]
(11:12:34 AM) RN-lionora: }
(11:12:35 AM) RN-lionora: }
(11:12:36 AM) RN-lionora: while ${Item:Next(exists)}
(11:12:37 AM) RN-lionora: }
(11:12:38 AM) RN-lionora: ; After everything is looted...let's clean up our Cargo
(11:12:40 AM) RN-lionora: Me.Ship:StackAllCargo
(11:12:41 AM) RN-lionora: }
(11:12:42 AM) RN-lionora: that's for reloading charges from Corp Hangar
(11:12:52 AM) RN-lionora: for dropping off: i use:
(11:12:53 AM) RN-lionora: function TransferLootToCorpHangarArray()
(11:12:54 AM) RN-lionora: {
(11:12:54 AM) RN-lionora: variable string ContainerName = "Corporate Hangar Array"
(11:12:54 AM) RN-lionora: variable index:item Items
(11:12:54 AM) RN-lionora: variable iterator Item
(11:12:54 AM) RN-lionora: variable int ContainerCargoCount
(11:12:54 AM) RN-lionora: variable int amount
(11:12:54 AM) RN-lionora: ; Make sure that there is actually a cargo container there that matches the name we set
(11:12:54 AM) RN-lionora: if (!${Entity[${ContainerName}](exists)})
(11:12:54 AM) RN-lionora: {
(11:12:55 AM) RN-lionora: UI:UpdateConsoleIRC["Cannot find ${ContainerName} at resupply point!"]
(11:12:58 AM) RN-lionora: return
(11:12:59 AM) RN-lionora: }
(11:13:00 AM) RN-lionora: UI:UpdateConsoleIRC["obj_Cargo DEBUG:Found ${ContainerName}"
(11:13:01 AM) RN-lionora: call Ship.OpenCargo
(11:13:01 AM) RN-lionora: wait 10
(11:13:03 AM) RN-lionora:
(11:13:04 AM) RN-lionora: ; If it exists, get close enough to it!
(11:13:05 AM) RN-lionora: if (${Entity[${ContainerName}].Distance} > 1300)
(11:13:06 AM) RN-lionora: {
(11:13:07 AM) RN-lionora: UI:UpdateConsole["Approaching ${ContainerName}"]
(11:13:08 AM) RN-lionora:
(11:13:09 AM) RN-lionora: call Ship.Approach Entity[${ContainerName}].ID
(11:13:10 AM) RN-lionora: }
(11:13:11 AM) RN-lionora: ; Always make sure that the container's cargo is accessible. If not, then open the cargo to populate the window
(11:13:11 AM) r2h: ????)
(11:13:13 AM) RN-lionora: ;Entity[${ContainerName}]:OpenCargo
(11:13:13 AM) RN-lionora: ;wait 50
(11:13:14 AM) RN-lionora: Me.Ship:DoGetCargo[Items]
(11:13:16 AM) RN-lionora: Items:GetIterator[Item]
(11:13:17 AM) RN-lionora: if ${Item:First(exists)}
(11:13:18 AM) RN-lionora: do
(11:13:19 AM) RN-lionora: {
(11:13:20 AM) RN-lionora: ;UI:UpdateConsoleIRC["Moving ${Item.Value.Name} to ${ContainerName}"]
(11:13:21 AM) RN-lionora: if ${CorpHangarArray.IsReady[TRUE]}
(11:13:22 AM) RN-lionora: {
(11:13:23 AM) RN-lionora: call CorpHangarArray.Open ${CorpHangarArray.ActiveCan}
(11:13:24 AM) RN-lionora: UI:UpdateConsole["Transferring: ${Item.Value.Name}"]
(11:13:25 AM) RN-lionora: Item.Value:MoveTo[${CorpHangarArray.ActiveCan},${Item.Value.Quantity},Corporation Folder 1]
(11:13:28 AM) RN-lionora: }
(11:13:29 AM) RN-lionora: else
(11:13:30 AM) RN-lionora: {
(11:13:31 AM) RN-lionora: UI:UpdateConsoleIRC["Corp hangar is not ready"]
(11:13:32 AM) RN-lionora: }
(11:13:33 AM) RN-lionora:
(11:13:34 AM) RN-lionora: }
(11:13:34 AM) RN-lionora: while ${Item:Next(exists)}
(11:13:36 AM) RN-lionora: CorpHangarArray:StackAllCargo
(11:13:37 AM) RN-lionora: ;restore ratter state
(11:13:38 AM) RN-lionora: Ratter.CurrentState:Set["IDLE"]
(11:13:38 AM) RN-lionora:
(11:13:40 AM) RN-lionora:
(11:13:40 AM) RN-lionora: }
(11:13:43 AM) RN-lionora: and function UnloadCargo()
(11:13:43 AM) RN-lionora: {
(11:13:44 AM) RN-lionora:
(11:13:45 AM) RN-lionora: if ${EVE.Bookmark[${Config.Hauler.DropOffBookmark}](exists)}
(11:13:46 AM) RN-lionora: {
(11:13:46 AM) RN-lionora: variable bookmark bm
(11:13:48 AM) RN-lionora: bm:Set[${EVE.Bookmark[${Config.Hauler.DropOffBookmark}]}]
(11:13:49 AM) RN-lionora: call Ship.WarpToBookMarkName "${Config.Hauler.DropOffBookmark}"
(11:13:50 AM) RN-lionora: ;for now:Corp Hangar only
(11:13:50 AM) RN-lionora: call Cargo.TransferLootToCorpHangarArray
(11:13:51 AM) RN-lionora: }
(11:13:52 AM) RN-lionora: else
(11:13:53 AM) RN-lionora: {
(11:13:54 AM) RN-lionora: ;TODO:abort?
(11:13:55 AM) RN-lionora: UI:UpdateConsoleIRC["Bookmark for loot delivery is NOT setup!!!!"]
(11:13:56 AM) RN-lionora: This.CurrentState:Set["FLEE"]
(11:13:57 AM) RN-lionora: }
(11:13:58 AM) RN-lionora: }
(11:14:17 AM) r2h: you didn't have to yell so much...
(11:15:08 AM) Ehl: pastebin.com ffs
(11:16:25 AM) Neutro: lol
(11:16:35 AM) Bel: yeah pastebin would be nice
(11:17:41 AM) stealthy: RN-lionora: PASTEBIN FFS
(11:17:47 AM) stealthy: Jesus christ
(11:18:01 AM) stealthy: Seriously
(11:18:06 AM) stealthy: From now on, pastebin or GTFO
(11:18:13 AM) r2h: LUL
(11:18:17 AM) MSMage: also
(11:18:34 AM) r2h: how come i paste like more than 3 lines i get the boot lol
(11:18:39 AM) MSMage: RN-lionora, you should probably not use your eve name as your nickname
(11:18:57 AM) stealthy: THat helps too
(11:19:02 AM) ***r2h dies
(11:19:06 AM) MSMage: I mean AAA has enough problems without people getting banned
(11:19:20 AM) ***Ehl is rofl
(11:19:28 AM) ***stealthy is laughing irl
(11:19:33 AM) r2h: anyone have the name r2h?
(11:19:45 AM) stealthy: r2h: if I could remember what r2h stood for I'd check
(11:19:52 AM) stealthy: also
(11:19:56 AM) r2h: good, you forgot XD
(11:19:58 AM) stealthy: I'm pretty sure you can't ToEntity a CHA
(11:20:00 AM) MSMage: dunno, but he was kinda obvious. RN is Reunion.
(11:20:20 AM) r2h: loggin in to check lol
(11:20:21 AM) stealthy: I'm probably way wrong there though
(11:21:36 AM) r2h: lol, two people have names that contain "r2h"
(11:21:37 AM) r2h: mwuahahah
(11:22:06 AM) Snipa: Holy christ.
(11:22:10 AM) Snipa: Wall of text ftf.
(11:22:38 AM) r2h: ftf? you miss a letter?
(11:22:48 AM) Snipa: No, For the Fail.
(11:22:54 AM) r2h: wow, i fail.
(11:23:02 AM) Snipa: Da.
(11:23:07 AM) r2h: i was trying to put a "fucking" in there
(11:23:08 AM) r2h: wasn't working
(11:23:15 AM) r2h: FTFF
(11:23:16 AM) r2h: or something
(11:23:44 AM) stealthy: So anyway
(11:23:49 AM) Bel: hmmm well I'm right next to my cha but CorpHangarArray is null, do I need to perform any action before I can access it?
(11:23:52 AM) MSMage: man
(11:23:55 AM) stealthy: Ban incoming on that RN- idiot
(11:24:02 AM) MSMage: i'm not sure it's worth the effort to report that guy
(11:24:07 AM) MSMage: did you already do it stealthy?
(11:24:09 AM) r2h: lul
(11:24:11 AM) stealthy: MSMage: cough
(11:24:22 AM) stealthy: someone that stupid needs euthanized
(11:24:37 AM) MSMage: good point. also note that his alt's name is in that character's bio
(11:24:38 AM) MSMage: have fun
(11:24:46 AM) Snipa: Your kidding?
(11:24:48 AM) Snipa: :D
(11:24:56 AM) ***r2h giggles
 
Last edited:
Top Bottom