I'll help but have limited .lua skills and little programming skills
B/C i have a feeling the ingame bot/assistant will be cash shop
Lets make it free

Tried that but the Eligium.exe file is actually an executable that loads all the modules in order, starting with the GPK. I was going to upload the file (it's only 24kb) to see if admin could identify what part needs to be modified. I can't figure out how to get it to only load the executable and not the whole program.Romplayer wrote:i believe u can bypass GPK by entering folder mw2_bin and executing Eligium.exe directly
Code: Select all
attach( findWindow("Eligium*") );
numSkills = 7;
manaTimer = 45;
manaPot = key.VK_F1;
function skillSpam()
for i=1,numSkills,1 do
keyboardPress( key["VK_" .. i] );
yrest(200);
end
end
newTimer("QuaffMana");
startTimer("QuaffMana",manaTimer*1000);
while true do
skillSpam();
if isTriggered("QuaffMana") then
yrest(1000);
keyboardPress( manaPot );
startTimer("QuaffMana",manaTimer*1000);
yrest(200)
end
end
detach();
Yea, it would be nice. But I can't find any information on how GPK does what it does. And I don't know how to properly disassemble and dll. Between my two versions of Olly, they show very different modules. Though with Olly 2.0 it doesn't recognize any of the functions.Romplayer wrote:i wouldn't mind helping write code once we get memory addresses for things in game..
try something like thisgeegeekids wrote:thanks for the code sir xD
I need a code for casting AOE, cause the script does not place the AOE automatically
thanks
Code: Select all
attach( findWindow("Eligium*") );
numSkills = 7;
manaTimer = 45;
manaPot = key.VK_F1;
mouseTimer = 10;
function skillSpam()
for i=1,numSkills,1 do
keyboardPress( key["VK_" .. i] );
yrest(200);
end
end
newTimer("QuaffMana");
newTimer("Mouseklik");
startTimer("QuaffMana",manaTimer*1000);
startTimer("Mouseklik",mouseTimer*1000);
while true do
keyboardPress( key.VK_TAB );
skillSpam();
if isTriggered("QuaffMana") then
yrest(1000);
keyboardPress( manaPot );
startTimer("QuaffMana",manaTimer*1000);
yrest(200)
end
if isTriggered("Mouseklik") then
mouseSet(510, 370);
yrest(200);
mouseLClick();
yrest(1000);
end
end
detach();
No, unfortunately I've been having to do homework non-stop and will continue to be in homework mode till next week. I haven't even logged in because I can't get past this gpk thing and can't find documentation on it anywhere.Romplayer wrote:hey did u get past GPK yet?
there is a file in mw2_bin called SYSSET maybe u can set OpenGPK=1 to 0 to disable it maybe?
It's a training script, I'm going to rename it as such. You play your character from level 1-15. Along the way, kill a couple elites and get some extra gold. Then farm out a few hundred "four-leaf clover"s. Having done the quests up to this point you should have alchemy and know how to make mana pots.reactive wrote:How can i use this script?
Users browsing this forum: No registered users and 0 guests