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

Title: [QUESTION] Making wow loginscreen read a remote var
Post 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"
Code: [Select]
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?
Title: Re: [QUESTION] Making wow loginscreen read a remote var
Post by: detonatorss on April 18, 2013, 10:05:41 pm
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
Title: Re: [QUESTION] Making wow loginscreen read a remote var
Post by: osler on April 18, 2013, 10:37:40 pm
I know that way, but i´d like to make it more visual.
Anyway, thanks.