Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


CE Request

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine
View previous topic :: View next topic  
Author Message
++METHOS
I post too much
Reputation: 92

Joined: 29 Oct 2010
Posts: 4197

PostPosted: Sun Jun 12, 2016 11:05 pm    Post subject: CE Request Reply with quote

I know I requested this before (sorry), but I really think it is necessary:

Ultimap - the ability to bulk-add results to code list, similar to what can be done inside the debugger window (the following opcodes access/write...).

Without this, each result must be manually added, one-by-one.

Thanks!
Back to top
View user's profile Send private message
Dark Byte
Site Admin
Reputation: 458

Joined: 09 May 2003
Posts: 25296
Location: The netherlands

PostPosted: Tue Jun 14, 2016 3:40 am    Post subject: This post has 1 review(s) Reply with quote

added it

Also, this code will add a copy to clipboard function (run it before opening ultimap)

Code:

registerFormAddNotification(function(f)
  if f.ClassName=="TfrmUltimap" then
    --spawn a timer that runs as soon as the gui is responsive again
    local t=createTimer(nil)
    t.Interval=1
    t.Tag=createRef(f)  ---create a reference to this object
    t.OnTimer=function(t)
      local f=getRef(t.Tag)
     

      --add a copy selection to clipboard menuitem
      f.ListView1.MultiSelect=true --enable multiselect

      local mi=createMenuItem(f.PopupMenu1)
      mi.Caption="Copy selection to clipboard"
      mi.Tag=t.tag
      mi.OnClick=function(m)
        --code to copy to clipboard
        local i
        local f=getRef(m.Tag)
        local lv=f.ListView1
        local sl=createStringlist()
       
        for i=0,lv.Items.Count-1 do
          if lv.Items[i].Selected then
            sl.add(lv.Items[i].Caption..' - '..lv.Items[i].SubItems[0]..' - '..lv.Items[i].SubItems[1])
          end         
        end

        writeToClipboard(sl.Text)

        sl.destroy()
      end
     

      f.PopupMenu1.Items.add(mi)
      t.destroy()
    end;

  end
end)

_________________
Do not ask me about online cheats. I don't know any and wont help finding them.

Like my help? Join me on Patreon so i can keep helping
Back to top
View user's profile Send private message MSN Messenger
++METHOS
I post too much
Reputation: 92

Joined: 29 Oct 2010
Posts: 4197

PostPosted: Tue Jun 14, 2016 3:55 am    Post subject: Reply with quote

Awesome! Thanks, Dark Byte! Very Happy

I still owe you +rep, but I won't forget. Cool
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites