Results 1 to 6 of 6
  1. #1
    Azuki's Avatar Dazed

    Join Date
    Apr 2014
    Country
    Posts
    609
    Thanked
    338
    Thanks
    273
    Suggestion type:
    Forum/FGunZ

    Suggestion title:
    Forum: One-click profile redirect, update status bar(?)
    FGunZ: Alternate Snipe Nerf, Character/Info suggestion

    Suggestion description:

    Forum:
    • About the 'one-click profile redirect' instead of clicking the name on the footer of the page to see the profile of that certain person, why not hm, when someone posts on the cb, triggering the right click would show the info of that person? i.e: Add friend/add to ignore list/View Profile..etc.
    • Update status bar: its like the fb thing. (but I doubt this will be implemented due to could be abuse or something)


    FGunZ:
    • Alternate snipe nerf - instead of making it 2s but still same damage, hm why not lower the damage instead and make the delay around 900ms-1s? I think it'll show some difference. As of the moment the donor snipe one has 150 dmg, why not reduce it to something like 120? And the shop snipes are in 130 dmg, why not lower it to 110 dmg instead? I think this we'll be like a fair thing to most of the snipe and non snipe users complaining about 1 hit kill. (idk just my intuition)
    • Character/Info - when hovering over the names of the players on the lobby, it'll show basic info about the player. i.e: k/d stat, clan, level and room. Since most of the players tends to forget the commands used in the game. Also when right click is triggered, it'll show the add friend and message thing (only possible on lobby though).
    Last edited by Azuki; 03-31-2015 at 05:40 PM.

  2. #2
    GeorgeGFX's Avatar secret.club

    Join Date
    Nov 2010
    Country
    Posts
    15,460
    Thanked
    2,332
    Thanks
    5,080
    The forum suggestion, don't think that will be changed.
    It's how vBulletin is coded and changing it could cause some mess.

    >>> Credits to Sikk408 @ DevaintArt <<<

  3. #3
    Azuki's Avatar Dazed

    Join Date
    Apr 2014
    Country
    Posts
    609
    Thanked
    338
    Thanks
    273
    Originally Posted by George View Post
    The forum suggestion, don't think that will be changed.
    It's how vBulletin is coded and changing it could cause some mess.
    Ah, i forgot that this is vbulletin. I thought 'twas ipb

  4. #4
    Juriën's Avatar :(){ :|: & };:

    Join Date
    May 2010
    Country
    Posts
    4,064
    Thanked
    2,460
    Thanks
    1,164
    Originally Posted by George View Post
    It's how vBulletin is coded and changing it could cause some mess.
    I actually disagree, it will just have to rewrite a bit of code which triggers the actual dropdown from left click to use right click..

  5. #5
    Banned

    Join Date
    Aug 2012
    Country
    Posts
    679
    Thanked
    394
    Thanks
    615
    Originally Posted by Juriën View Post
    I actually disagree, it will just have to rewrite a bit of code which triggers the actual dropdown from left click to use right click..
    Hook?

  6. #6
    Juriën's Avatar :(){ :|: & };:

    Join Date
    May 2010
    Country
    Posts
    4,064
    Thanked
    2,460
    Thanks
    1,164
    Code atm (didn't check, just wrote it)
    Code:
    $('.popupmenu .popupctrl').toggle(function(){
        $(this).parent().find('.popupbody').show();
        return false;
    },
    function(){
        $(this).parent().find('.popupbody').hide();
        return false;
    });
    new code for right click:
    Code:
    $('.popupmenu .popupctrl').mousedown(function(event){
         // 3 = right click.
        if(event.which == 3)
        {
             object = $(this).parent().find('.popupbody');
             if(object.is(':hidden')
             {
                  object.show();
             }
             else
             {
                  object.hide();
             }
        }
    });

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)