Basically, all you have to do is find a way to change the magic char (which is . at both hacks) to another char that isnt used yet.
zoid (-> zoid's pickit for d2loader) has included a configuration file which also contains an extra line for the magic char.
Open your d2loader/plugin folder. There should be a file called zoid.ini (if you have that plugin installed, otherwise you dont have to change the magic char )
Find these lines at the bottom fo the file:
code:--------------------------------------------------------------------------------
msgs {
MagicChar = "."; //The Prefix for all zPickit Commands.
VerbosePrefix = "ÿc3::ÿc0 ";
ErrorPrefix = "ÿc1::ÿc0 ";
}
--------------------------------------------------------------------------------
Change that line MagicChar= to whatever you like. I personally use : so it will look like this
code:--------------------------------------------------------------------------------
msgs {
MagicChar = ":"; //The Prefix for all zPickit Commands.
VerbosePrefix = "ÿc3::ÿc0 ";
ErrorPrefix = "ÿc1::ÿc0 ";
}
--------------------------------------------------------------------------------
What folder etc do I put it in?