Results 1 to 14 of 14

Thread: Arcane drop issue

  1. #1
    Member Jaunawab's Avatar
    Join Date
    May 2014
    Posts
    81
    Thanks Thanks Given 
    12
    Thanks Thanks Received 
    18
    Thanked in
    7 Posts

    Default Arcane drop issue

    STS will never admit it but there is this statement in the source code of arcane legends:
    Code:
    if (player.name == "Shaojao")
    {
    Player.ArcaneDropDisabled = true;
    }
    !EDIT!
    But i think im not the only one. So i have to make this more effective for STS.
    Code:
    switch (player.name)
    {
    case "Shaojao":
            . 
            .
            .
    case "Urmosvk": 
            player.ArcaneDropDisabled = true;
         break;
    
    default: 
            player.ArcaneDropDisabled = false;
         break;
    }
    !ANOTHER EDIT!
    To make this clear. I'm just joking. I am just unlucky with my drops. Or am I?
    !UPDATE!
    I give up on this event. There is no reason for wasting my time in the event zone. People are dropping infested artifacts of shadow left and right and i still didnt get even cheapest belt.
    Last edited by Jaunawab; 06-04-2019 at 10:13 PM. Reason: The time has come

  2. The Following User Says Thank You to Jaunawab For This Useful Post:


  3. #2
    Senior Member Allset's Avatar
    Join Date
    Feb 2017
    Location
    Razor's Edge
    Posts
    745
    Thanks Thanks Given 
    100
    Thanks Thanks Received 
    178
    Thanked in
    121 Posts

    Default

    Quote Originally Posted by Jaunawab View Post
    STS will never admit it but there is this statement in the source code of arcane legends:
    Code:
    if (player.name == "Shaojao")
    {
    Player.ArcaneDropDisabled = true;
    }
    I think I saw that statement somewhere...

    I know there is a statement that goes something like this.
    If (player.name == Allset & player.name == DZM)
    {
    Allset.ArcaneDropRate = 500%
    Else
    Allset.ArcaneDropRate = 5%
    }

    LoL

    Syntax for layman XD
    Last edited by Allset; 06-03-2019 at 07:14 PM.

  4. #3
    New Member
    Join Date
    Feb 2018
    Posts
    4
    Thanks Thanks Given 
    3
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    Quote Originally Posted by Jaunawab View Post
    STS will never admit it but there is this statement in the source code of arcane legends:
    Code:
    if (player.name == "Shaojao")
    {
    Player.ArcaneDropDisabled = true;
    }
    LoL

    Enviado de meu MG500 usando o Tapatalk

  5. #4
    Member Jaunawab's Avatar
    Join Date
    May 2014
    Posts
    81
    Thanks Thanks Given 
    12
    Thanks Thanks Received 
    18
    Thanked in
    7 Posts

    Default

    Seems like they are going to fix this.
    Name:  Screenshot_20190604-032231_Arcane Legends.jpg
Views: 282
Size:  599.9 KB

  6. #5
    Senior Member Allset's Avatar
    Join Date
    Feb 2017
    Location
    Razor's Edge
    Posts
    745
    Thanks Thanks Given 
    100
    Thanks Thanks Received 
    178
    Thanked in
    121 Posts

    Default

    Quote Originally Posted by Jaunawab View Post
    Seems like they are going to fix this.
    Name:  Screenshot_20190604-032231_Arcane Legends.jpg
Views: 282
Size:  599.9 KB
    Noooo man down... Or should I say system down lol

    Sent from my moto e5 plus using Tapatalk

  7. #6
    Luminary Poster Fyrce's Avatar
    Join Date
    Aug 2010
    Location
    Sanctuary
    Posts
    5,111
    Thanks Thanks Given 
    2,974
    Thanks Thanks Received 
    766
    Thanked in
    549 Posts

    Default

    You are not that important.

    Star light, star bright...

  8. #7
    Senior Member conat's Avatar
    Join Date
    Jan 2013
    Location
    Valley of eternal youth / Ec
    Posts
    1,008
    Thanks Thanks Given 
    224
    Thanks Thanks Received 
    203
    Thanked in
    86 Posts

    Default

    What about this code. Is true ?

    thanks all for watch this post.

  9. #8
    Member Jaunawab's Avatar
    Join Date
    May 2014
    Posts
    81
    Thanks Thanks Given 
    12
    Thanks Thanks Received 
    18
    Thanked in
    7 Posts

    Default

    Quote Originally Posted by Fyrce View Post
    You are not that important.
    You're right. Im not. But my wallet is.

  10. #9
    Member Jaunawab's Avatar
    Join Date
    May 2014
    Posts
    81
    Thanks Thanks Given 
    12
    Thanks Thanks Received 
    18
    Thanked in
    7 Posts

    Default

    Quote Originally Posted by conat View Post
    What about this code. Is true ?

    thanks all for watch this post.
    I would like to know it aswel.

  11. #10
    Forum Adept
    Join Date
    Nov 2016
    Posts
    316
    Thanks Thanks Given 
    28
    Thanks Thanks Received 
    46
    Thanked in
    28 Posts

    Default

    this thread is funny. it deserves to be sticky lol
    btw, you can't switch on strings (char* to be exact) in c/c++ . i read once in forum this is the language of AL. And the comparison player.name == "Shaojao" will also not do what you expect to do. Aand - you can't mix the small/capital P
    and allset's code have too many issues: &, else in brackets, capitals, stings not in quotes, %
    Last edited by voidPtr; 06-03-2019 at 09:42 PM.

  12. The Following User Says Thank You to voidPtr For This Useful Post:


  13. #11
    Member Jaunawab's Avatar
    Join Date
    May 2014
    Posts
    81
    Thanks Thanks Given 
    12
    Thanks Thanks Received 
    18
    Thanked in
    7 Posts

    Default

    Quote Originally Posted by voidPtr View Post
    this thread is funny. it deserves to be sticky lol
    btw, you cant switch on strings (char* to be exact) in c/c++ . i read once in forum this is the language of AL. And the comparison player.name == "Shaojao" will also not do what you expect to do.
    and allset's code have too many issues: &, else in brackets, capitals, stings not in quotes, %
    Thanks for tips. Didnt know the exact programming language of arcane legends. So i have to use some functions for comparing strings.

  14. #12
    Senior Member Allset's Avatar
    Join Date
    Feb 2017
    Location
    Razor's Edge
    Posts
    745
    Thanks Thanks Given 
    100
    Thanks Thanks Received 
    178
    Thanked in
    121 Posts

    Default

    Quote Originally Posted by voidPtr View Post
    this thread is funny. it deserves to be sticky lol
    btw, you can't switch on strings (char* to be exact) in c/c++ . i read once in forum this is the language of AL. And the comparison player.name == "Shaojao" will also not do what you expect to do. Aand - you can't mix the small/capital P
    and allset's code have too many issues: &, else in brackets, capitals, stings not in quotes, %
    I know 5 else .05 I code just used pseudocode XD
    I bet python would work as well...
    Sent from my moto e5 plus using Tapatalk
    Last edited by Allset; 06-03-2019 at 10:43 PM.

  15. #13
    Forum Adept
    Join Date
    May 2018
    Location
    Bjgjfidjdjdjdk
    Posts
    441
    Thanks Thanks Given 
    89
    Thanks Thanks Received 
    150
    Thanked in
    104 Posts

    Default

    I need to check the code too. The best item to ever drop for me was that vanity longsword. *sigh*

    MAGE OF DEVIANT MISFITSKGKGKFK

  16. #14
    Member Handcraftedd's Avatar
    Join Date
    Oct 2017
    Posts
    121
    Thanks Thanks Given 
    3
    Thanks Thanks Received 
    2
    Thanked in
    2 Posts

    Default

    Lol so not only me farming 5k+ tokens without any drops

    Sent from my Redmi 4A using Tapatalk

Similar Threads

  1. Drop rate issue
    By itq in forum PL General Discussion
    Replies: 7
    Last Post: 10-27-2018, 09:16 AM
  2. massive crate drop ans balanced scale drop issue
    By Greoatef in forum AL Technical Issues and Bugs
    Replies: 32
    Last Post: 01-10-2018, 01:42 PM
  3. Is the drop rate really the issue here?
    By Takezaki in forum DL General Discussion
    Replies: 23
    Last Post: 08-13-2012, 07:54 AM
  4. Thank you STS for addressing the level 65 drop issue quickly
    By WhoIsThis in forum PL General Discussion
    Replies: 2
    Last Post: 11-23-2011, 12:31 PM
  5. drop range issue
    By Lowlyspy in forum PL Suggestions and Feedback
    Replies: 0
    Last Post: 08-29-2011, 10:25 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •