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 


Can Mono dissector display functions by alpha order?

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine
View previous topic :: View next topic  
Author Message
mindoff
Advanced Cheater
Reputation: 0

Joined: 12 Jun 2016
Posts: 96

PostPosted: Tue Oct 31, 2017 9:14 am    Post subject: Can Mono dissector display functions by alpha order? Reply with quote

It's very hard to find a specific function in a very long function list.

Other tools such as dnspy,just display those functions by name alpha order.
Easy to locate.

While CE just don't,it make people tired to find a function in a unorder list.
Back to top
View user's profile Send private message
Dark Byte
Site Admin
Reputation: 458

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

PostPosted: Tue Oct 31, 2017 9:43 am    Post subject: Reply with quote

open monoscript.lua

find
Code:

function mono_class_enumMethods(class, includeParents)


find the last end part of that function
Code:

  monopipe.unlock()

  return methods
end


and change it to:
Code:

  monopipe.unlock()
 
  local temp={}
  local i
  for i=1,#methods do
    temp[i]={methods[i].name, methods[i]}
  end
  table.sort(temp, function(e1,e2) return e1[1] < e2[1] end)
 
  methods={}
  for i=1,#temp do
    methods[i]=temp[i][2]
  end 

  return methods
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
mindoff
Advanced Cheater
Reputation: 0

Joined: 12 Jun 2016
Posts: 96

PostPosted: Tue Oct 31, 2017 8:09 pm    Post subject: Reply with quote

Thanks,I suggest make this as default set.
Or at least make it an option in the setting menu or somewhere next version.
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