Item Search
     
BG-Wiki Search
Page 285 of 307 FirstFirst ... 235 275 283 284 285 286 287 295 ... LastLast
Results 5681 to 5700 of 6124
  1. #5681
    BG Content
    Join Date
    Jul 2007
    Posts
    22,404
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    I think there's a way to determine which mounts people have, which Shortcuts does. This addon should be possible.

  2. #5682
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    and you can use this to get a random number
    math.floor(math.random(1, 5))
    math.ceil(math.random(0, 4))

  3. #5683
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    See here is where I fail, I have no idea how you would utilize that random number thing. I honestly wouldnt know where to begin on something like this.

  4. #5684
    BG Content
    Join Date
    Jul 2007
    Posts
    22,404
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    Code:
    mountarray = {[1]="Crab",[2]="Tiger"} -- etc. generate this dynamically based on the mounts they have
    
    function random_mount(mountarray)
        return mountarray[math.ceil(math.random(0,#mountarray))]
    end
    math.random(0,#mountarray) will return a number between 0 and the number of elements in mountarray. That number will be ceil()'d and will give you an integer from 0 to #mountarray, which is astronomically unlikely to be 0 but will error out if it is. Anyway, then it look for that key in the mountarray table and returns the string value associated with it.

  5. #5685
    RIDE ARMOR
    Join Date
    Jun 2016
    Posts
    12
    BG Level
    1
    FFXI Server
    Asura

    I have a couple of questions about the dressup addon for windower, but I tried to make an account at windower.net and the registration process is broken, sends a link to your email address that doesn't work, and the code given doesn't work either, tried it 2x to be sure, so I decided to come over to this huge thread to ask my questions and hopefully get them answered, so here goes.

    I have the DressUp addon for windower and I can't for the life of me figure out how to stop my character from blinking or other chars from blinking. I looked at the link for the readme but I can't make heads or tails of that thing. I tried //du blinking self on- still blinked so I tried //du blinking self off and that didn't work either, so if someone knows how to turn the blinking off like blinkmenot used to do, please share because I am really frustrated trying figure this out. Thanks

  6. #5686
    Sea Torques
    Join Date
    Jun 2007
    Posts
    522
    BG Level
    5
    FFXI Server
    Lakshmi

    Quote Originally Posted by Byrthnoth View Post
    Code:
    mountarray = {[1]="Crab",[2]="Tiger"} -- etc. generate this dynamically based on the mounts they have
    
    function random_mount(mountarray)
        return mountarray[math.ceil(math.random(0,#mountarray))]
    end
    math.random(0,#mountarray) will return a number between 0 and the number of elements in mountarray. That number will be ceil()'d and will give you an integer from 0 to #mountarray, which is astronomically unlikely to be 0 but will error out if it is. Anyway, then it look for that key in the mountarray table and returns the string value associated with it.
    Toss on math.max and it should never error out
    return math.max(1, mountarray[math.ceil(math.random(0,#mountarray))])

    Or you could live dangerously


  7. #5687
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    I think the old blinkmenot commands work with dressup or did at one time. did you try typing "//dressup help" most addons will print out commands when you type help at the end. I am not on my pc with ffxi atm so i cant check if that works for this addon or not.

  8. #5688
    Relic Shield
    Join Date
    Oct 2006
    Posts
    1,599
    BG Level
    6
    FFXI Server
    Odin

    Quote Originally Posted by predator View Post
    I have a couple of questions about the dressup addon for windower, but I tried to make an account at windower.net and the registration process is broken, sends a link to your email address that doesn't work, and the code given doesn't work either, tried it 2x to be sure, so I decided to come over to this huge thread to ask my questions and hopefully get them answered, so here goes.

    I have the DressUp addon for windower and I can't for the life of me figure out how to stop my character from blinking or other chars from blinking. I looked at the link for the readme but I can't make heads or tails of that thing. I tried //du blinking self on- still blinked so I tried //du blinking self off and that didn't work either, so if someone knows how to turn the blinking off like blinkmenot used to do, please share because I am really frustrated trying figure this out. Thanks
    If you can't figure out the commands, check out inside the data folder of dressup for a settings file, tweak the settings there then reload the addon.

  9. #5689
    RIDE ARMOR
    Join Date
    Jun 2016
    Posts
    12
    BG Level
    1
    FFXI Server
    Asura

    Quote Originally Posted by Mafai View Post
    If you can't figure out the commands, check out inside the data folder of dressup for a settings file, tweak the settings there then reload the addon.
    Are we talking about changing all the false settings to true? xml doc cant change the settings in there

  10. #5690
    Relic Shield
    Join Date
    Oct 2006
    Posts
    1,599
    BG Level
    6
    FFXI Server
    Odin

    Quote Originally Posted by predator View Post
    Are we talking about changing all the false settings to true? xml doc cant change the settings in there
    The ones you want.. Yes you can, open it with notepad. Save it, reload dressup

  11. #5691
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    You might need to completely unload the addons then alter the settings xml file. Sometimes the addons like to keep their settings while loaded. I cant believe i totally forgot about that method anyway, I use it half the time myself. Also if i think back on it I think that blinking command i could never get to work but the old blinkmenot ones would work for me. I dunno why, that just how it was.

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

    Quote Originally Posted by predator View Post
    I have a couple of questions about the dressup addon for windower, but I tried to make an account at windower.net and the registration process is broken, sends a link to your email address that doesn't work, and the code given doesn't work either, tried it 2x to be sure, so I decided to come over to this huge thread to ask my questions and hopefully get them answered, so here goes.
    People have successfully registered in the last 24 hours. What error did you get?

  13. #5693
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    Quote Originally Posted by Byrthnoth View Post
    Code:
    mountarray = {[1]="Crab",[2]="Tiger"} -- etc. generate this dynamically based on the mounts they have
    
    function random_mount(mountarray)
        return mountarray[math.ceil(math.random(0,#mountarray))]
    end
    this should kill any chance that 0 will be selected
    Code:
    function random_mount(mountarray)
        local select_mount = 0
        while select_mount < 1 do
            select_mount = math.ceil(math.random(0,#mountarray))]
        end
        return mountarray[select_mount]
    end

  14. #5694
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    OK so the the command for summoning mounts taken from the version update notes was

    You may also mount using the text command /mount [mount name].
    How do you utilize that from the random selection? Unless you can figure out how to do it via packets or whatever. I dunno whatever is easiest.

  15. #5695
    BG Content
    Join Date
    Jul 2007
    Posts
    22,404
    BG Level
    10
    FFXI Server
    Lakshmi
    Blog Entries
    1

    windower.send_command('input /mount '..random_mount(mountarray)..' <me>')

  16. #5696
    Bagel
    Join Date
    Dec 2012
    Posts
    1,488
    BG Level
    6

    Quote Originally Posted by Trumpy View Post
    OK so the the command for summoning mounts taken from the version update notes was

    How do you utilize that from the random selection? Unless you can figure out how to do it via packets or whatever. I dunno whatever is easiest.
    like this
    Code:
    function random_mount(mountarray)
        local select_mount = 0
        while select_mount < 1 do
            select_mount = math.ceil(math.random(0,#mountarray))]
        end
        return mountarray[select_mount]
    end
    
    function UseMount()
        --Build mountarray not sure how to do this because i dont know where to look for mounts you have
        windower.send_command("input /mount "..random_mount(mountarray))
    end

  17. #5697
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    Code:
    --[[
    Copyright (c) 2013, Whoever
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    
    * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
    * Neither the name of azureSets nor the
    names of its contributors may be used to endorse or promote products
    derived from this software without specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL The Addon's Contributors BE LIABLE FOR ANY
    DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    ]]
    
    _addon.name = 'MountUp'
    _addon.version = '1.00'
    _addon.author = 'Whoever (Shiva)'
    _addon.commands = {'mu','mountup'}
    
    mountarray = {[1]="Crab",[2]="Tiger"} -- etc. generate this dynamically based on the mounts they have
    
    function random_mount(mountarray)
        local select_mount = 0
        while select_mount < 1 do
            select_mount = math.ceil(math.random(0,#mountarray))]
        end
        return mountarray[select_mount]
    end
    
    function UseMount()
        --Build mountarray not sure how to do this because i dont know where to look for mounts you have
        windower.send_command("input /mount "..random_mount(mountarray))
    end
    Just tossed together your code parts with some of that copywrite stuff you guys like
    And then to use you would type?

    //mu usemount

  18. #5698
    RIDE ARMOR
    Join Date
    Jun 2016
    Posts
    12
    BG Level
    1
    FFXI Server
    Asura

    Quote Originally Posted by Byrthnoth View Post
    People have successfully registered in the last 24 hours. What error did you get?
    When I created the account and was sent to my email and clicked the link provided I got:

    PWM 5033



    The PWM configuration is invalid or corrupt. Please correct the error, or remove the configuration file. { 5033 ERROR_INVALID_CONFIG (New User Registration -> New User Form does not contain the ldap naming attribute 'cn', but is required because it is the ldap naming attribute and the username is not being automatically generated.) }

    And when I use the code given and click the verify or whatever it is I get sent back to the account making screen:

    New User Registration
    Password Self Service
    To register a new account, please complete the following form. Your password must conform to the following requirements:

    Password is not case sensitive.
    Must be at least 5 characters long.
    Must not include any of the following values: password test
    Must not include part of your name or username.
    Must not include a common word or commonly used sequence of characters.

    Username
    Email Address
    First name
    Last name
    New Password
    Confirm Password
    Create


    To me that's broken

  19. #5699
    RIDE ARMOR
    Join Date
    Jun 2016
    Posts
    12
    BG Level
    1
    FFXI Server
    Asura

    Quote Originally Posted by Trumpy View Post
    You might need to completely unload the addons then alter the settings xml file. Sometimes the addons like to keep their settings while loaded. I cant believe i totally forgot about that method anyway, I use it half the time myself. Also if i think back on it I think that blinking command i could never get to work but the old blinkmenot ones would work for me. I dunno why, that just how it was.
    I stopped playing almost two years ago, someone reminded me about /lockstyle, I want to play a game not code one so I'll just use windower for distance and the better graphics than if I used ffxi windowed mode. Thanks though

  20. #5700
    Relic Shield
    Join Date
    Jan 2013
    Posts
    1,868
    BG Level
    6

    Lockstyle is amazing. i still use the blinkmenot features of Dressup though. But I also dual box and it helps with mule followin and some blinking like if i change weapon mid fight that lockstyle doesnt keep you from blinking. but the modifyin the settings file is literally not coding. you open the settings file in the data folder of that addon (via notepad or notepad++) and change falses to true and vice versa save and load the addon. its not even complex. This is the entirety of the settings file (some settings files are even less than this). just alter the parts in the blinking. Also dressup helps cause there are still assholes out there who dont use lockstyle and they will be blinkin like a christmas tree if you are ever a job that might have to target anything during battle like WHM for example.

    Code:
    <?xml version="1.1" ?>
    <settings>
        <global>
            <autoupdate>false</autoupdate>
            <blinking>
                <all>
                    <always>false</always>
                    <combat>true</combat>
                    <target>true</target>
                </all>
                <follow>
                    <always>true</always>
                    <combat>true</combat>
                    <target>true</target>
                </follow>
                <others>
                    <always>false</always>
                    <combat>true</combat>
                    <target>true</target>
                </others>
                <party>
                    <always>false</always>
                    <combat>true</combat>
                    <target>true</target>
                </party>
                <self>
                    <always>false</always>
                    <combat>true</combat>
                    <target>true</target>
                </self>
            </blinking>
            <others>
    
            </others>
            <profiles>
    
            </profiles>
            <replacements>
                <body>
    
                </body>
                <face>
    
                </face>
                <feet>
    
                </feet>
                <hands>
    
                </hands>
                <head>
    
                </head>
                <legs>
    
                </legs>
                <main>
    
                </main>
                <race>
    
                </race>
                <ranged>
    
                </ranged>
                <sub>
    
                </sub>
            </replacements>
        </global>
    </settings>

Page 285 of 307 FirstFirst ... 235 275 283 284 285 286 287 295 ... 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