Jump to content

faiz92786

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by faiz92786

  1. 1 hour ago, faiz92786 said:

    Other thing i can use to find value by using power , accuracy and guidelines but clue level and clue id is very far from each other

    I have an idea what if i make menu prompt which ask for value 1 and value 2 , value 1 is for level and value 2 card i have so script will ask value and add them , how to make it?

  2. 1 hour ago, AKidWithMidgetFriend said:

    Hmmm. By "but when ever i get new card or i level up i have to change values" more specifically the "change values" part do you mean that the address for them changes? Or do the values just reset back to what they'd be unedited? If the address keeps changing then you can try searching nearby the address (use GG's record script action on an empty note or file.txt for an easy outputted code but becareful as to not record script over your actual script because it does overwrite the file that it records to) searching nearby the address would help the script find the new address quickly. However if the values are changing and the address is staying the same then I'd try saving them as list items and setting it up to where if those values aren't equal to a hacked number then edit the list values back up to being hack

    Other thing i can use to find value by using power , accuracy and guidelines but clue level and clue id is very far from each other

  3. 7 hours ago, AKidWithMidgetFriend said:

    Then modify the refine number to be 2;3 instead of just three this will give you only the two and threes from the list then with the editAll you want to do it in the same order as they were refined if you wanted to change that 2 into an 8 and that 3 into a 99 then it would look like gg.editAll('8;99', gg.TYPE_DWORD)

    **EDIT** If I'm remembering wrong and that does not work you can always save the list items after refining it down to 2;3 and then refining to 2 editing the 2 then loading the saved list items and refining down to 3 and editing it as well. This wouldnt be recommended if the first method works because it is a lot more work

    Bro i have successfully made a script but issue is that , for ex. Value are 1;2;3;4 while 1 is for level of stick and 2 is for card for stick and 4 is for stick code so i am changing level and stick card,but when ever i get new card or i level up i have to change values , i try finding offset but it is changing on every time i restart app , guys suggest me what to do ?

     

     

  4. 1 hour ago, Farmeriscool said:

    I dont get what your saying just that you want to not use editAll

     

    Example 1 is using edit all but let's say I want to edit just 3

     

    
    gg.searchNumber("1;2;3;4::23", gg.TYPE_URTYPE)
    gg.refineNumber("3", gg.TYPE_FLOAT)
    gg.getResults(1)
    gg.editAll("val", gg.TYPE_URTYPE)

    That will only edit value 3

    But now let me show you a different method without editAll

     

    
    local s
    
    gg.searchNumber("1;2;3;4::23", gg.TYPE_URTYPE)
    s = gg.getResults(AMOUNT)
    for i,v in ipairs(s) do
      if v.value == "3" and v.flags == "TYPE" then 
        v.value = "amount"
        end
      end
        

     

    Bro what if i want to change two value for ex. Value 2 and value 3 , where i want to change value 2 to 8 and value 3 to 99

     

    I also try finding value using offset but value offset are changing on each restart of app 

     

    Can you please make it for me if i share value and desired value to you ?

     

     

  5. Hy guys i need help regard lua 

    I want to edit search value by lua not by using 

    gg.editall because it edit all value found 

     

    I want to edit few value like i search for group value 1;2;3;4::23

     

    And it find 1 , 2, ,3 ,4 so i want to edit only two value 

    Which if like i want to edit value 2 >98 and value 4>77

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.