bored and i was supposed to be in vegas for 2 more days
bored and i was supposed to be in vegas for 2 more days
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.
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.
Re: bored and i was supposed to be in vegas for 2 more days
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)
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)
Re: bored and i was supposed to be in vegas for 2 more days
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!
but seems like something i can accomplish
Thanks!
Re: bored and i was supposed to be in vegas for 2 more days
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
Re: bored and i was supposed to be in vegas for 2 more days
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
Re: bored and i was supposed to be in vegas for 2 more days
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)
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)
Re: bored and i was supposed to be in vegas for 2 more days
thats correct
it'll do that, because i didn't commit openSendBox yet :p
it'll do that, because i didn't commit openSendBox yet :p
Re: bored and i was supposed to be in vegas for 2 more days
i figured, working on it now.
Re: bored and i was supposed to be in vegas for 2 more days
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
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
Re: bored and i was supposed to be in vegas for 2 more days
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 = { }
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.
}