Signup Now
Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 53
  1. #21
    Free User Paco's Avatar
    Join Date
    Dec 2013
    Location
    Poland
    Posts
    55
    Reputation
    6
    Rep Power
    0
    I think sometimes this action not working as infinite loop, because when my first character is out of stamina then this script make reconnect and login against on first character? Maybe i do something wrong? I added this action to the waypoints when my character refilling in the depot. If someone help me i will thankful

    @If this information will be useful , i got 1 character per 1 account so i using 3 accounts per 1 respawn.


    here is problem with this:

    local nextAccount = accountList[(curAccount % #accountList) + 1]

    connect(nextAccount.account, nextAccount.password, nextAccount.character


    this action not counting good current online account and can't relog to the second and third account ( just login on first account from the list )
    Last edited by Paco; 07-23-2014 at 10:04 AM.

  2. #22
    Free User Maniaks's Avatar
    Join Date
    Jul 2014
    Posts
    13
    Reputation
    10
    Rep Power
    0
    Help, as relogger with another character without checking the stamina??

  3. #23
    Free User
    Join Date
    Aug 2014
    Posts
    15
    Reputation
    10
    Rep Power
    0
    Hey,

    wondering if it is at all possible to add a Setting Changer? For instance, if I am botting a level 200 knight, a level 100 knight and a level 30 knight on the same account. For all three characters I would need to change the settings for new scripts and configurations. It could look some like this:

    Code:
    	{
    		account   = 'account1',
    		password  = 'password1',
    		character = 'character1',
                    setting = 'setting1'
    	},
    	{
    		account   = 'account2',
    		password  = 'password2',
    		character = 'character2',
                    setting = 'setting2'
    	},
    	{
    		account   = 'account3',
    		password  = 'password3',
    		character = 'character3',
                    setting = 'setting3'
    	}
    Thanx

  4. #24
    Free User
    Join Date
    Dec 2013
    Posts
    40
    Reputation
    12
    Rep Power
    0
    hello @Raphael the script run good but now send me this error

    error in Action script wptid:15:
    ["local nextAccount = accountList[(curAcco..."]:Action: 15:54 attempt to perform arithmetic on local 'curAccount' (a nil value)

    idk how to fix it

  5. #25
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by Fisen View Post
    hello @Raphael the script run good but now send me this error

    error in Action script wptid:15:
    ["local nextAccount = accountList[(curAcco..."]:Action: 15:54 attempt to perform arithmetic on local 'curAccount' (a nil value)

    idk how to fix it
    Correctly write your character's name.

  6. #26
    Free User albino's Avatar
    Join Date
    Apr 2014
    Location
    Brazil
    Posts
    183
    Reputation
    27
    Rep Power
    21
    @Raphael
    I'm also having problem. I took out the stamina part to relog next chars when reaching main.
    When it goes to main, it logs out, type the account credentials and log the same char over and over.

    Code:
    accountList = {
    	{
    		account = 'test',		--The first acc you are on botting
    		password = 'test123',		--The password you are botting
    		character = 'Bubble'	--The current character that is botting
    	}
    }
    I'm using for a single account.

  7. #27
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by albino View Post
    @Raphael
    I'm also having problem. I took out the stamina part to relog next chars when reaching main.
    When it goes to main, it logs out, type the account credentials and log the same char over and over.

    Code:
    accountList = {
    	{
    		account = 'test',		--The first acc you are on botting
    		password = 'test123',		--The password you are botting
    		character = 'Bubble'	--The current character that is botting
    	}
    }
    I'm using for a single account.
    How exactly did you take the stamina part out?

  8. #28
    Free User albino's Avatar
    Join Date
    Apr 2014
    Location
    Brazil
    Posts
    183
    Reputation
    27
    Rep Power
    21
    Quote Originally Posted by Raphael View Post
    How exactly did you take the stamina part out?
    I'm using this on the Action. The account setup is on persistent script and not using 'local' to the var

    Code:
    	for _, v in ipairs(accountList) do
    		v.character = v.character:lower()
    	end
    	
    	local curAccount = table.find(accountList, $name:lower(), 'character')
    	local nextAccount = accountList[(curAccount % #accountList) + 1]
    
    	waitandlogout()
    	waitping()
    	keyevent(VK_ESCAPE)
    	waitping()
    	connect(nextAccount.account, nextAccount.password, nextAccount.character)

  9. #29
    Free User
    Join Date
    Dec 2013
    Posts
    16
    Reputation
    17
    Rep Power
    0
    Do i need to reconnect after ss?

  10. #30
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by Yberhydro View Post
    Do i need to reconnect after ss?
    Yeah.

 

 

Posting Permissions

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