|
You last visited: Today at 05:16
Advertisement
[TuT] More about editing scripts.
Discussion on [TuT] More about editing scripts. within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.
06/15/2011, 09:04
|
#1
|
elite*gold: 0
Join Date: Jan 2008
Posts: 55
Received Thanks: 31
|
[TuT] More about editing scripts.
I've spent a good 5 hours today learning about how the scripts work for this game and reading several guides. I've come to a point where I can do whatever the hell I want.
HUGE NOTE
You can do anything seen on this forum, Waterbird12 may have told you not to touch certain areas but yes if you know what you are doing you should definitely mess around with them.
Guide [The Script, The basics]
1. What you need?
2. What to know?
3. Bang it and finish it!
1. What you need?
You're going to need several things to start off with.
A. You must have a copy of AutoIt3, which comes with Scite which will allow you to edit, compile, or build .au3 files.
B. You'll also need IDC, or ID Changer by Team Harmony more specifically Selmon. What you specifically need at all cost are all the .au3 files.
2. What to know?
A. Read a couple of guides in the forums. Especially read the guides by Support, Waterbird12, and refer to page 226 of the Team Harmony IDC topic, there is one specific thing here that tells exactly how everything should be done.
Waterbird12
Support
B. Don't even panic about the newer versions of the IDC that contain godmode, epicmode, ubermode, or whatever. You can do it yourself.
C. You need to understand how the scripts works, one small space or error can lead to you're script being a total douche.
$NoEffect = GUICtrlCreateRadio("No Effect -> SP +40", 152, 248, 137, 17)
GUICtrlSetFont(-1, 9, 800, 0, "Arial")
Set("1", "1", $NoEffect, 2, "00000", "2040")
Here is a picture as an example of the GUI part
1. Look at $NoEffect, it has no meaning. All it does is lead the set to this destination.
2. GUICtrlCreateRadio, this makes the button become a circle instead of a square such as GUICtrlCreateCheckbox. In some cases making a circle causes some difficulties.
3. "No effect > Sp + 40" This only means that the button wil say what is in the quotes.
4. Do not fuck with the lone numbers. "1", "1" < those ones. I have no idea what their for.
5. "00000", "2040" technically what this does is that it changes all items that have NONE as an item effect in the game to SP + 40. Yes this works, yes you can cap off at 200 SP.
6. To summarize, the line set is the command, it tells us what changes to what, and which destination to go to when checked off.
The line with GUI, is basically the button and the text. It tells us where the button will be placed "152, 248" and the font that will be used for the button text.
7. I recommend always pasting
GUICtrlSetFont(-1, 9, 800, 0, "Arial"), and always following certain patterns.
3. Bang It and Finish it!
Now that I've explained certain parts of certain lines, which should practically end the day if you've read all the guides I mentioned.
I will now give a detailed explanation on how to do it.
A. First open your ID Changer.au3 and edit it using Autoit3. Remember "scite"
B. Now go down. Until you get to somewhere like this
Set("2000001", "2000008", $PS, 2, "20101", "40001")
Need a picture?
http://imageshack.us/photo/my-images/830/tut1g.jpg/
C. What I'm going to do is change this so that it makes my PS aka Plasma Sword gives me 30 HP.
D. First Change "2000001", "20000008", to "1", "1", What that does is basically gets rid of the ID, which is Plasma Sword to Taser Sword and instead refers to the Skill Effect of the item. At least That's what I believe it does.
E. Then change "20101", "40001" to "20101", "1030" What this does is changes the Plasma Sword + 1 to Hp + 30.
F. Now go to tools > Build > and a new ID Changer.Exe will have been built.
The button will be where the $PS corresponds to in the script, and the ID Changer.au3 script will have already made a button.
G. Just check it off, press Set, wait til 99% use the ID Launcher go in game and you have a Plasma Sword + 30 HP.
Now: IF YOU WANT TO MAKE YOU'RE OWN BUTTON
$NoEffect = GUICtrlCreateRadio("No Effect -> SP +40", 152, 248, 137, 17)
GUICtrlSetFont(-1, 9, 800, 0, "Arial")
Remember this?
A. First change the $noeffect to $PS, because that is where the set leads to. Then replace radio with Checkbox.
B. Now change "No effect > SP + 40" to something small such as "123"
C. Fix up the coordinates, 152, 248, so that it actually appears in the exe you're going to build. I can't help you with this, I have little knowledge of where the numbers correspond too.
D. Simply copy the Font line and place it right under.
E. Now place the whole thing right before the end of the GUI section.
F. It should look something like this
#Region ### START Koda GUI section ### Form=c:\users\julius\desktop\id changer v1.0.7\form1.kxf
$Form1_1 = GUICreate("PHY :: ItemChanger", 326, 288, 404, 118)
$PS = GUICtrlCreateCheckbox("PS", 15, 16, 33, 17)
GUICtrlSetFont(-1, 9, 800, 0, "Arial")
UISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
Then skip down to the
;Weapons!
Set("1", "1", $PS, 2, "20101", "1030")
BIG DISCLAIMER
Unless you are starting from scratch then you should have the jist of everything. If you are starting from scratch you're going to need to learn a lot more than what I have offered.
|
|
|
06/15/2011, 14:00
|
#2
|
elite*gold: 0
Join Date: May 2009
Posts: 457
Received Thanks: 359
|
already posted ... maybe find a way to build your own id launcher
|
|
|
06/15/2011, 15:06
|
#3
|
elite*gold: 0
Join Date: Mar 2011
Posts: 867
Received Thanks: 1,850
|
i dont understand
can u give screenshot tutorial?
|
|
|
06/15/2011, 15:19
|
#4
|
elite*gold: 0
Join Date: Apr 2009
Posts: 2,766
Received Thanks: 1,776
|
Quote:
Originally Posted by Mr.KawaiiDeshoo
i dont understand
can u give screenshot tutorial?
|
I make a new big texttutorial soon. O:
|
|
|
06/15/2011, 15:23
|
#5
|
elite*gold: 0
Join Date: Mar 2011
Posts: 867
Received Thanks: 1,850
|
Quote:
Originally Posted by xXDaisukeXx
I make a new big texttutorial soon. O:
|
u will do with screenshot?
|
|
|
06/15/2011, 15:33
|
#6
|
elite*gold: 68
Join Date: Jul 2010
Posts: 2,644
Received Thanks: 1,883
|
Quote:
Originally Posted by Mr.KawaiiDeshoo
u will do with screenshot?
|
Are you still stupid ? he said TEXTTUTURIAL ?!
|
|
|
06/15/2011, 15:36
|
#7
|
elite*gold: 0
Join Date: Apr 2009
Posts: 2,766
Received Thanks: 1,776
|
Quote:
Originally Posted by Mr.KawaiiDeshoo
u will do with screenshot?
|
If I'm not too lazy. xDD
|
|
|
06/15/2011, 18:57
|
#8
|
elite*gold: 0
Join Date: Jan 2008
Posts: 55
Received Thanks: 31
|
Er, I will update this with screen shots later. I just want to make it more obvious to those several people that attaining different stats is very possible.
|
|
|
 |
Similar Threads
|
[QUESTION] editing and remaking scripts
10/21/2009 - Grand Chase Philippines - 6 Replies
is it legal or illegal??
we all know that MLE is illegal couz it use another program to cheat in game..
while script, u only have to do is.. edit and copy and paste it to the designated folder..
uhmmmm..
why there are GCPH players still get banned??
stupidity?? careless??
or using other hacking software..
:mofo:
|
agBot Loop Scripts [ Let's Make alist with Mobs Scripts ]
07/09/2008 - SRO Hacks, Bots, Cheats & Exploits - 228 Replies
Hello Everyone,
i saw that everyone is getting stuck to make agBot Loop Script. so i though we should make a topic a mobs scripts. and i will start. :)
Now for me i prefer to use notepad to make my scripts.
How to install :
Just Copy the code and paste in <bot folder>\config\config1\script\default.lst
If we got more scripts, i will just make a webpage, where you can select Town, HP and MP Bots you wanna buy then the monster you want to kill. then it auto generate the script for you....
|
All times are GMT +1. The time now is 05:18.
|
|