Item Search
     
BG-Wiki Search
Page 155 of 307 FirstFirst ... 105 145 153 154 155 156 157 165 205 ... LastLast
Results 3081 to 3100 of 6124
  1. #3081
    Sea Torques
    Join Date
    Sep 2012
    Posts
    736
    BG Level
    5
    FFXI Server
    Leviathan

    Even after you did what I said? Show me the new code.

  2. #3082
    Hydra
    Join Date
    Jan 2010
    Posts
    100
    BG Level
    3

    Thanks to the COR changes some of the roll values of rolltracker are going to be off. If someone shoots me a PM when the new values are figured out I'll be happy to add them

  3. #3083
    Cerberus
    Join Date
    May 2009
    Posts
    437
    BG Level
    4
    FFXI Server
    Gilgamesh

    if not buffactive['amnesia'] then
    if state.CastingMode == 'Smite' then
    if player.equipment.main == 'Tinhaspa' then
    if player and 100 <= tp and player.status == 'Engaged' then
    windower.send_command('input /ws Victory Smite <t>')
    end
    else
    if player and 100 <= tp and player.status == 'Engaged' then
    windower.send_command('input /ws Victory Smite <t>')
    end
    end
    end
    if state.CastingMode == 'Fury' then
    if player.equipment.main == 'Tinhaspa' then
    if player and 100 <= tp and player.status == 'Engaged' then
    windower.send_command('input /ws Shijin Spiral <t>')
    end
    else
    if player and 100 <= tp and player.status == 'Engaged' then
    windower.send_command('input /ws Shijin Spiral <t>')
    end
    end
    end
    end
    end)

  4. #3084
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    I haven't been using Gearcollector in ages.
    Can you tell it "where" to put items he removes from inventory?
    Last time I used it (which is veeery long ago) he was putting stuff wherever he liked and in the end my inventory became a mess and had to rely on //find.
    Only solution I found at the time was to empty the inventory myself and just use GC to refill it.

  5. #3085
    Sea Torques
    Join Date
    Sep 2012
    Posts
    736
    BG Level
    5
    FFXI Server
    Leviathan

    Quote Originally Posted by Bukadan View Post
    Code:
    if not buffactive['amnesia'] then
    		if state.CastingMode == 'Smite' then
    			if player.equipment.main == 'Tinhaspa' then
    				if player and 100 <= tp and  player.status == 'Engaged' then
    					windower.send_command('input /ws Victory Smite <t>')
    				end
    			else
    				if player and 100 <= tp and player.status == 'Engaged' then
    					windower.send_command('input /ws Victory Smite <t>')
    				end
    			end
    		end
    		if state.CastingMode == 'Fury' then
    			if player.equipment.main == 'Tinhaspa' then
    				if player and 100 <= tp and  player.status == 'Engaged' then
    					windower.send_command('input /ws Shijin Spiral <t>')
    				end
    			else
    				if player and 100 <= tp and player.status == 'Engaged' then
    					windower.send_command('input /ws Shijin Spiral <t>')
    				end
    			end
    		end
    	end
    end)
    Please use "code" tags when posting code, it's awful to read otherwise.

    Add this line to the top, before the first "if":
    Code:
    print(buffactive['amnesia'], state.CastingMode, player.equipment.main, player.status, tp)
    Then try to gain some TP and it should print stuff into the Windower console. Tell me exactly what it prints please when TP >= 100.

  6. #3086
    Cerberus
    Join Date
    May 2009
    Posts
    437
    BG Level
    4
    FFXI Server
    Gilgamesh

    (random number) nil normal Tinhaspa Engaged

  7. #3087
    BG Content
    Join Date
    Jul 2007
    Posts
    22,393
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Spellcast

    Maintaining this plugin has given us endless trouble. Its code is a mess to the point where we don't even know where to fix things, let alone how. In order to add Wardrobe to Spellcast, we would have to rewrite the entire plugin. The problem is that it's impossible for us to rewrite Spellcast while maintaining all of its idiosyncratic behavior and logical foibles.

    So, as of this update, Spellcast is officially deprecated. It is currently not broken that badly, but %equip variables will not work if you use them on a slot that is currently using gear from the Wardrobe. Also, something about <stnpc> targeting has been broken for quite a while.

    We have removed Spellcast from the launcher (unless you already have it installed). Problems that arise with it not be fixed from this point, but it isn't as if it will go fully non-functional immediately.


    Sorry to everyone that relies on it, but we cannot continue to support this.

  8. #3088
    Sea Torques
    Join Date
    Jun 2012
    Posts
    570
    BG Level
    5
    FFXI Server
    Asura
    WoW Realm
    The Scryers

    Quote Originally Posted by Ophannus View Post
    Checking my /equip menu causes me to crash every single time. I keep reloading but I eventually forget and end up crashing again whenever I check it. Anyone know which plugin might be causing it?
    Bet you are using dat files.

  9. #3089
    Cerberus
    Join Date
    May 2009
    Posts
    437
    BG Level
    4
    FFXI Server
    Gilgamesh

    anyone know why this doesnt work?

    Code:
    if not buffactive['amnesia'] then
    		if state.CastingMode == 'Smite' then
    			if player.equipment.main == 'Tinhaspa' then
    				if player and 100 <= tp and  player.status == 'Engaged' then
    					windower.send_command('input /ws Victory Smite <t>')
    				end
    			else
    				if player and 100 <= tp and player.status == 'Engaged' then
    					windower.send_command('input /ws Victory Smite <t>')
    				end
    			end
    		end
    		if state.CastingMode == 'Fury' then
    			if player.equipment.main == 'Tinhaspa' then
    				if player and 100 <= tp and  player.status == 'Engaged' then
    					windower.send_command('input /ws Shijin Spiral <t>')
    				end
    			else
    				if player and 100 <= tp and player.status == 'Engaged' then
    					windower.send_command('input /ws Shijin Spiral <t>')
    				end
    			end
    		end
    	end
    end)

  10. #3090
    Old Merits
    Join Date
    Apr 2012
    Posts
    1,109
    BG Level
    6

    Are you not pasting the function line deliberately or have you deleted it?

  11. #3091
    Cerberus
    Join Date
    May 2009
    Posts
    437
    BG Level
    4
    FFXI Server
    Gilgamesh

    Code:
    windower.register_event("tp change", function(tp)
    if not buffactive['amnesia'] then
    		if state.CastingMode == 'Smite' then
    			if player.equipment.main == 'Tinhaspa' then
    				if player and 100 <= tp and  player.status == 'Engaged' then
    					windower.send_command('input /ws Victory Smite <t>')
    				end
    			else
    				if player and 100 <= tp and player.status == 'Engaged' then
    					windower.send_command('input /ws Victory Smite <t>')
    				end
    			end
    		end
    		if state.CastingMode == 'Fury' then
    			if player.equipment.main == 'Tinhaspa' then
    				if player and 100 <= tp and  player.status == 'Engaged' then
    					windower.send_command('input /ws Shijin Spiral <t>')
    				end
    			else
    				if player and 100 <= tp and player.status == 'Engaged' then
    					windower.send_command('input /ws Shijin Spiral <t>')
    				end
    			end
    		end
    	end
    end)
    there lol, its actually your shit. ive been loooking for you

  12. #3092
    BG Content
    Join Date
    Jul 2007
    Posts
    22,393
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    We are going to split up the abilities.lua resource at some point today on -dev.

    If you use the -dev client, be prepared for things to not work right for a few hours.

  13. #3093
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    I am crashing every time I check my equipment, and not sure what is causing it. I have unloaded and loaded a bunch of plugins/addons without luck. Anyone else having this issue?

  14. #3094
    Nidhogg
    Join Date
    Jul 2008
    Posts
    3,746
    BG Level
    7
    FFXIV Character
    Seraphus Highwynn
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    I crash everytime I check equipment too. Everyone says it might be due to a modded .dat that you have but I dunno if that's the case.


    Since Spellcast is being dropped, it will eventually become borked down the line. What's the most painless way to jump into GearSwap having 0 experience using it, with 7 jobs that have heavily ideosyncratic and personalized XMLs with complex rules and triggers(SCH, queuing Strategems, rules for engaging mobs with TH gear for first hit then switching to regular TP set etc). I heard Gearswap is more efficient since it uses packets but I don't know how I'll be able to convert my shit. Are there resource pages available for templates for various jobs or examples of other people's file so I can copypasta it for my own for when spellcast eventually breaks?

  15. #3095
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    Quote Originally Posted by Ophannus View Post
    I crash everytime I check equipment too. Everyone says it might be due to a modded .dat that you have but I dunno if that's the case.
    Curious. I did just install the new Xi View, and didn't notice it before that. It very well could be one of those .dat files.

  16. #3096
    Old Merits
    Join Date
    Apr 2012
    Posts
    1,109
    BG Level
    6

    It is XI view causing it. They've changed the equipment screen to house the wardrobe storage options, which is obviously different to how it was.

    The XIview thread on the windower site specifically references it

  17. #3097
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    I recently moved from Spellcast to Gearswap myself and still not done with it (for some jobs I still use windower scripts atm).
    Let me share my experience in hope it will make you save some time:

    1. Spellcast had multiple functions, "scripting" and "smart syntax", like typing //c4 in place of /ma "Cure IV" <t>. For the scripting part there's Gearswap, for the syntax part you're gonna need Shortcuts (remember to unload Spellcast when you use these two)
    2. You cannot convert automatically, and even if you could it wouldn't be wise to do it. Gearswap is not simply the same thing as Spellcast written with a different language. It's a different thing, way more powerful, efficient and... different. For a couple of things which were very straightforward in Spellcast you'll have to spend more time in GS but overall once you get the vibe, you will recognize it's much better. My suggestion is to re-code your XMLs into Luas. To do that you'll need to first understand how Gearswap works.
    3. First useful thing: there's a folder called "beta_examples_and_information" inside Gearswap. There you will find a few examples of very very very simple Lua files that you can check and compare to understand how some things work. In the same folder you will find an XLS file that compares the old Spellcast commands/functions, and the new Gearswap ones. It's not 100% updated but it's very good to get you an idea of what to expect
    4. On this page you can find a list of pre-made Luas, and can request more. Motenten's ones are especially very complex in a smart way. He automatized things so that all the complexity is hidden to the user (you) and you can just customize the gear and stuff you want according to your needs. You don't really need to understand what happens behind the curtains. This might be the lazier thing to do but for many people it's also the most efficient. Those Luas are incredible and very very detailed. If you had the habit of having complex Spellcast XMLs with a high degree of checks and automatization you're gonna love these masterpieces.
    5. If you decide to make your own, you can ask your questions and find solutions in this thread. A lot of people will be glad to teach you, fix your stuff and share tips with you.


    Last but not least there's a W.I.P. guide for Spellcast that Motenten is working on, you can find the links as it follows. Long but really useful read:

  18. #3098
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    Quote Originally Posted by Haborym View Post
    Curious. I did just install the new Xi View, and didn't notice it before that. It very well could be one of those .dat files.
    Think it's 57.dat specifically.
    Caradog should push the new version (with RUN custom icons!) in a few hours.

  19. #3099
    Relic Horn
    Join Date
    Aug 2008
    Posts
    3,131
    BG Level
    7
    FFXI Server
    Sylph

    Tparty isn't working; it's not showing mob HP, tp is only showing for the bottom player, and tp isn't updating.

  20. #3100
    Nidhogg
    Join Date
    Jul 2008
    Posts
    3,746
    BG Level
    7
    FFXIV Character
    Seraphus Highwynn
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Just noticed that Mizu. Kubikazari and Acumen Ring are not being recognized by spellcast. Gearcollector pulls Mizu. Kubikazari into my inventory from my BLU.xml but when I troubleshoot my nuke/sanguine blade sets, it won't equip Mizu. Kubikazari. As for Acumen Ring, neither GC nor SC recognizes it yet. I could understand Acumen Ring since might not be in resources yet but what about Mizu. Kubikazari which was added in March?

    -Edit- Duh BLU can't use it ~_~

    But will resources come out soon for new rings?

Page 155 of 307 FirstFirst ... 105 145 153 154 155 156 157 165 205 ... LastLast

Similar Threads

  1. Service and Support
    By Ribeye in forum FFXI: Everything
    Replies: 8
    Last Post: 2009-10-17, 18:23
  2. Windows vista and FFXI problem
    By Takeno in forum FFXI: Everything
    Replies: 1
    Last Post: 2007-07-26, 13:36
  3. Windows Vista and Windower
    By divisortheory in forum FFXI: Everything
    Replies: 35
    Last Post: 2006-06-23, 04:19