EA Forums - Banner

Old forum

Hi,

Does anyone have a link to the old forum, or is completely closed? There is a few threads there I would like to read again...
Regards, ArveK

Replies

  • gamerdruid
    4931 posts Moderator
    edited October 2017
    The old forum is dead and buried as far as I am aware.
    I am not an employee of EA/Envision. The views expressed are my own!
  • Bummer, there was a few good resources there :#
    Regards, ArveK
  • gamerdruid
    4931 posts Moderator
    Some of the resources were transferred, for example the early posts in the new Tips forum came from the old forum. Was there something in particular you were looking for? It may have been transferred or someone may have saved it.
    I am not an employee of EA/Envision. The views expressed are my own!
  • A few threads in the API/script section, I don't remember the exact names though
    Regards, ArveK
  • gamerdruid
    4931 posts Moderator
    Maybe @leo7044 or others kept a copy in German or English.
    I am not an employee of EA/Envision. The views expressed are my own!
  • leo7044
    47 posts Moderator
    I am sorry. I didn't copy API-threads from old forum.

    But here you can find the ClientLib (if you need it): https://prodgame08.alliances.commandandconquer.com/363/ClientLib.js.txt

    If you have specific questions... ask and perhaps can somebody answer :wink:
    I am a Community Moderator, not an Official EA Representative.
    YouTube: https://www.youtube.com/user/LEOBRB7044
    TeamSpeak: IP: 84.201.30.224:9988
    Email: [email protected]
  • ArveK_GDI
    82 posts Member
    edited November 2017
    Hi sorry for late answer, I simply forgot your replies :)

    There was quite a big bank of information about the scripts/API in the old forums, in particullar I am looking for a way to check if a unit, a Mammoth for instance, have been upgraded with the battering ram or not. For reference, see the cncopt script. We can get the units there, but we only get a string representing the name of each unit (GDI_Mammoth, NOD_Cobra etc.) instead of a numeric identificator. I guess a regular mammoth vs a upgraded mammoth have different id's.

    Now I am not sure if this is described somewhere in the old forums, but if it was not present there, I doubt I can find it anywhere else.

    However, I will look at the clientlib and see if I find anything helpful there, the problem is that my skillset with JS is rather low.. :(
    Post edited by ArveK_GDI on
    Regards, ArveK
  • leo7044
    47 posts Moderator
    For Buildings:
    var buildings = ClientLib.Data.MainData.GetInstance().get_Cities().get_CurrentOwnCity().get_Buildings();
    for (var key in buildings.d)
    {
    	console.log(buildings.d[key].get_TechGameData_Obj());
    }
    

    But for units... I guess I have to fit :neutral:
    I am a Community Moderator, not an Official EA Representative.
    YouTube: https://www.youtube.com/user/LEOBRB7044
    TeamSpeak: IP: 84.201.30.224:9988
    Email: [email protected]
  • ArveK_GDI
    82 posts Member
    edited November 2017
    Yeah, I have been able to get the buildings as well, but not the defense/offense objects :(
    Regards, ArveK
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. Sign in or register to get started.