Modcraft - The community dedicated to quality WoW modding!
Content creation => Modelling and Animation => Topic started by: osler on April 17, 2013, 06:06:14 pm
-
Hello.
I´m making a login mod which prevents you from logging in if you don´t have the last patch, but i have a big problem.
I´m using a if/else structure which compares the var "internalVersion"
if (internalVersion == "20001") then
-- Do nothing
else
AccountLoginLoginButton:Disable();
AccountLoginLoginButton:SetText("Your patch is outdated");
more code...
end
(which corresponds to 12340 in 3.3.5a 12340 clients) to a custom var, but i don´t know hot to make the loging to read that var from a webserver.
Any suggestion?
-
it's really easy to do a simple thing, so please thing a little.
Change the WoW.exe Build and change the AuthCodes really easy and you have minus problems
-
I know that way, but i´d like to make it more visual.
Anyway, thanks.