bored and i was supposed to be in vegas for 2 more days

Any discussion not related to the other forum topics
joshr45
Posts: 96
Joined: Tue Mar 12, 2013 3:03 pm

bored and i was supposed to be in vegas for 2 more days

Post by joshr45 » Sun Apr 14, 2013 6:40 pm

due to flight cancellations and delayed flights causing a connecting flight to be missed and then trying a 3rd time our group finally said screw it and cancelled the flight, tried to rent a car and drop it off in vegas but there is like a $700-1200 drop off fee so that was a no go, and then we finally cancelled all the flights and came home.
It really sucks i was supposed to be visiting my buddy in the Air force and Spirit airlines royally F-ed up any attempt of that.

so i'm looking for some scripting or fixing of some small stuff to do to take my mind off stuff.

User avatar
kjLotus
Special Guest
Posts: 1813
Joined: Sun Jul 22, 2012 2:16 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by kjLotus » Sun Apr 14, 2013 7:17 pm

hmmm...

i just added MOD_WEAPON_BASH to core, but nothing uses it

you could add that mod to the items that should have it (reading the script committed in 3267, excluding the latent one)

joshr45
Posts: 96
Joined: Tue Mar 12, 2013 3:03 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by joshr45 » Sun Apr 14, 2013 8:39 pm

well, i have a few item_mods of my own that i've added pretty much just assassin's set +2 stats and correcting aegis stats <-- that one might have been reset though i haven't checked.

but seems like something i can accomplish

Thanks!

User avatar
kjLotus
Special Guest
Posts: 1813
Joined: Sun Jul 22, 2012 2:16 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by kjLotus » Sun Apr 14, 2013 10:53 pm

if you want something else to do, you could update every npc in this list http://wiki.ffxiclopedia.org/wiki/Item_Deliverer to call player:openSendBox(); in onTrigger and, if you really want to have fun, make them display the text they're supposed to

joshr45
Posts: 96
Joined: Tue Mar 12, 2013 3:03 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by joshr45 » Sun Apr 14, 2013 11:34 pm

when i was running through nashmau textid's i was gonna work on the delivery box guys, i swear i found their text but i wasn't sure

joshr45
Posts: 96
Joined: Tue Mar 12, 2013 3:03 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by joshr45 » Sun Apr 14, 2013 11:45 pm

so basically just adding
function onTrigger(player,npc)
player:showText(npc, ITEM_DELIVERY_DIALOG);
player:openSendBox();
end;

pops up
[23:38:58][Error] luautils::OnTrigger: scripts/zones/Bastok_Markets/npcs/Khonzon
.lua:26: attempt to call method 'openSendBox' (a nil value)

User avatar
kjLotus
Special Guest
Posts: 1813
Joined: Sun Jul 22, 2012 2:16 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by kjLotus » Sun Apr 14, 2013 11:51 pm

thats correct

it'll do that, because i didn't commit openSendBox yet :p

joshr45
Posts: 96
Joined: Tue Mar 12, 2013 3:03 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by joshr45 » Mon Apr 15, 2013 12:00 am

i figured, working on it now.

joshr45
Posts: 96
Joined: Tue Mar 12, 2013 3:03 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by joshr45 » Mon Apr 15, 2013 12:25 am

delivery npcs out of place along with a few others, or named wrong
1st is supposed to be Djinabaha Ah manager

2nd supposed to be Dabigo delivery services manager

3rd pic is supposed to be Opococo(Mabebe) Taru on the left and Mabebe(Yando-Memondo) Taru on the Right
Attachments
Warezkid_2013.04.15_001939.png
Djinabaha
Warezkid_2013.04.15_001924.png
Dabigo
Warezkid_2013.04.15_001901.png
wrong tarus

joshr45
Posts: 96
Joined: Tue Mar 12, 2013 3:03 pm

Re: bored and i was supposed to be in vegas for 2 more days

Post by joshr45 » Mon Apr 15, 2013 3:18 am

Boris and Wenzel in Selbina crash the server with the same code ive been putting in all the other ones that work,
guessing its because of this, with boris and wenzel inside of this it will crash the server, outside they wont say anything.

the only difference is the TextID_Selbina = { }

Code: Select all

-- Variable TextID   Description text
TextID_Selbina = 
{
-- General Texts
ITEM_CANNOT_BE_OBTAINED = 6375, -- You cannot obtain the item <item> come back again after sorting your inventory
          ITEM_OBTAINED = 6378, -- Obtained: <item>
           GIL_OBTAINED = 6379, -- Obtained <number> gil
       KEYITEM_OBTAINED = 6381, -- Obtained key item: <keyitem>
    NOT_HAVE_ENOUGH_GIL = 0,    -- You do not have enough gil.
          HOMEPOINT_SET = 6434, -- Home point set!
 FISHING_MESSAGE_OFFSET = 6462, -- You can't fish here
        SUBJOB_UNLOCKED = 6756, -- You can now designate a support job.
    
-- NPC texts
NOMAD_MOOGLE_DIALOG = 6554, -- I'm a traveling moogle, kupo. I help adventurers in the Outlands access items they have stored in a Mog House elsewhere, kupo.


-- Shop Texts
  HERMINIA_SHOP_DIALOG = 6930, -- Hello there. What can I do for you?
 TORAPIONT_SHOP_DIALOG = 6931, -- Arm yourself before you step outside.
CLOTHCRAFT_SHOP_DIALOG = 6933, -- Welcome to the Weavers' Guild salesroom.
   FISHING_SHOP_DIALOG = 6934, -- Welcome to the Fishermen's Guild salesroom.
   QUELPIA_SHOP_DIALOG = 6935, -- In need of otherworldly protection?
CHUTARMIRE_SHOP_DIALOG = 6936, -- I have items for those who delve in the black arts!
  DOHDJUMA_SHOP_DIALOG = 6932, -- I'm Dohdjuma, and I sell all kinds of things.
}

Post Reply