Page 1 of 1

RomBot XML Editor [Program]

Posted: Thu Feb 02, 2012 12:55 pm
by Pushing40
[2/23/12]
Version 1.1 is uploaded, Please read the Readme included in the zip.
Seems to be a little more universal now. However, I wasn't able to figure out how to undo/redo pasted code.
Sorry for that. Enjoy
***************

I understand this is my first post, So some will be weary on downloading this program. It's understandable. I will assure you it's clean with an online virus scan. The program does not ask for any login information and was made by myself with code snippets I have taken from this site over the past 5 days. So thank you to all who provided the tutorials for me to learn what I have so far.
The program itself is a simple XML editor for editing waypoint files created with micromacro. There are some built in functions for faster customization and less need for typing for some of you (I hope).
I will be more than happy to add new ones when I learn them or by request(please give an example of how it works when requesting a feature).

Code: Select all

Antivirus 	Result 	Update
AhnLab-V3 	- 	20120201
AntiVir 	- 	20120202
Antiy-AVL 	- 	20120202
Avast 	- 	20120202
AVG 	- 	20120202
BitDefender 	- 	20120202
ByteHero 	- 	20120126
CAT-QuickHeal 	- 	20120202
ClamAV 	- 	20120202
Commtouch 	- 	20120201
Comodo 	- 	20120202
DrWeb 	- 	20120202
Emsisoft 	- 	20120202
eSafe 	- 	20120130
eTrust-Vet 	- 	20120202
F-Prot 	- 	20120201
F-Secure 	- 	20120202
Fortinet 	- 	20120202
GData 	- 	20120202
Ikarus 	- 	20120202
Jiangmin 	- 	20120201
K7AntiVirus 	- 	20120201
Kaspersky 	- 	20120202
McAfee 	- 	20120202
McAfee-GW-Edition 	- 	20120202
Microsoft 	- 	20120202
NOD32 	- 	20120202
Norman 	- 	20120202
nProtect 	- 	20120202
Panda 	- 	20120202
PCTools 	- 	20120201
Prevx 	- 	20120202
Rising 	- 	20120118
Sophos 	- 	20120202
SUPERAntiSpyware 	- 	20120202
Symantec 	- 	20120202
TheHacker 	- 	20120202
TrendMicro 	- 	20120202
TrendMicro-HouseCall 	- 	20120202
VBA32 	- 	20120202
VIPRE 	- 	20120202
ViRobot 	- 	20120202
VirusBuster 	- 	20120202
Keep in mind I'm not a professional programmer and I only intend to help the community so keep flaming to a minimum please. If you find bugs, report them and I'll do my best to fix them up.

Thanks,
-J.Radell

Re: RomBot XML Editor [Program]

Posted: Thu Feb 02, 2012 1:35 pm
by Administrator
Seems nice, but I've found a few things that could be changed.

First, undo/redo do not seem to work. Would be nice to have that feature.
Second, and I'm not sure this is really feasible with how you've designed this program, but it would be nice if, when adding code via clicking on a snippet to add from the left, would would attempt to insert it at the proper location rather than where the mouse cursor is. You can do this with regex.
Third, the minimum height is a bit too low. If you resize the window, you can cause the scrollbar to not display the bottom portion.

Re: RomBot XML Editor [Program]

Posted: Thu Feb 02, 2012 1:55 pm
by rock5
Note: This requires .Net.

It's handy for simple edits but my problem with it is the command list just scratches the surface. I think it would be impossible to cover all useful snippets of code.

Also I find the lua color coding of other editors invaluable in detecting errors.

Still the idea of entering snippets of code, ready to be edited, is appealing.

Probably, if this works out, the list will be so long that it will be hard to find anything. So some sort of grouping might be in order.

Re: RomBot XML Editor [Program]

Posted: Thu Feb 02, 2012 2:10 pm
by Germangold
i just use notepad++ even understands the xml logic

Re: RomBot XML Editor [Program]

Posted: Thu Feb 02, 2012 3:28 pm
by Guest1234
@Germangold

That's what I use, and not only for xml/lua either.

Re: RomBot XML Editor [Program]

Posted: Thu Feb 02, 2012 5:11 pm
by Pushing40
Germangold wrote:i just use notepad++ even understands the xml logic
You know, I figured most people would be using something better. I kind of liked the idea of auto adding code. Also, I'm extremely new to Rombot/micro so it's pretty much a test run. I will fix up the width and add a scroll bar. Also organizing shouldn't be that hard. I made the code land where the mouse was cause I was unsure how to make the program know exactly which waypoint it was adding to. I'll look into everything if people feel it's worth it. Personally it helps me but like I said I'm new to all this. Thank you all for the feedback, it's appreciated

Re: RomBot XML Editor [Program]

Posted: Thu Feb 02, 2012 10:11 pm
by rock5
I think this will be particularly appealing to new users, and may even help them to learn. Which will probably make life easier for us developers. :)

My number one suggestion is the functions need to be loaded and saved to an extarnal file. That way anyone can make corrections, modifications, add their own snippets and share them with others. That way you can occationally post updated snippets file without having to update the whole program. Also it makes it more appealing to advanced users like me because the snippets I would want are not the same as a new user would want. Actually, maybe you could have different files, one for beginners and one for advanced users etc.

Because the entries in the left list is brief it's hard to tell what it does exactly. It would be nice if you got a tooltip pop up describing the option when you mouse over the entry or some way to preview the code before entering it.

I wouldn't worry about auto inserting into the right place. Probably wouldn't be too difficult if the waypoint was empty but if there is already code then you will have to choose where to put it anyway.

Re: RomBot XML Editor [Program]

Posted: Sun Feb 19, 2012 10:39 pm
by Golbez
This is what i used in some of my college classes, not sure if you guys have seen SciTE yet :)

http://en.wikipedia.org/wiki/SciTE

Re: RomBot XML Editor [Program]

Posted: Mon Feb 20, 2012 6:52 am
by rock5
Golbez wrote:This is what i used in some of my college classes, not sure if you guys have seen SciTE yet :)

http://en.wikipedia.org/wiki/SciTE
I use scite but that has nothing to do with the topic. The OP is trying to write a program that auto enters commonly used bot code.