로딩중...
MMK_033
Moscow
좋아요 221
댓글 148
동영상 0
업로드 3
팔로워 15
다운로드 10,676
  • Tubeguy

    Definitely this is the feature that GTA V had been missing.

    2018년 10월 21일 (일)
  • Tubeguy

    Special thanks for GTAO scripts.

    2018년 05월 11일 (금)
  • Tubeguy

    Some time ago I made the same thing for my Date Display mod as a third-part script. You can check it out, except I reassigned the whole date for two cases - for both "Prologue" mission and "Franklin & Lamar" mission in case when the date is not reassigned originally, that is the very beginning of the new game. The former is set from NOV-15-2003 to JAN-02-2004 (according to decorations in the bank it's supposed to be the time somewhere about Christmas) and the latter is set from JUN-06-2009 to NOV-07-2013 (with the usual walkthrough speed you visit North Yankton in the "Bury the Hatchet" mission within a month, that is about December, when it snows).

    2018년 01월 11일 (목)
  • Tubeguy

    @Kevin_99 @toitoine66 look for ver. 2.10.5, it was released yesterday.
    https://www.gta5-mods.com/tools/scripthookv-net

    I have this problem solved.

    2017년 12월 20일 (수)
  • Tubeguy

    UPD: With updated .NET ScriptHook 2.10.5 it works fine.

    2017년 12월 19일 (화)
  • Tubeguy

    If I'm not the only one who can't open the creation menus and instead get motionless camera without any possibilities to do something until scripts reloading, then there might be some incompatibility problem with new NET ScriptHook.

    [22:07:56] [ERROR] Caught fatal unhandled exception:
    System.TypeInitializationException: Инициализатор типа "GTA.Native.MemoryAccess" выдал исключение. ---> System.NullReferenceException: Ссылка на объект не указывает на экземпляр объекта.
    в GTA.Native.MemoryAccess..cctor()
    --- Конец трассировки внутреннего стека исключений ---
    в GTA.Native.MemoryAccess.IsModelAPed(Int32 modelHash)
    в MapEditor.MapEditor.OnIndexChange(UIMenu sender, Int32 index)
    в MapEditor.MapEditor.OnTick(Object sender, EventArgs e)
    в GTA.Script.raise_Tick(Object value0, EventArgs value1)
    в GTA.Script.MainLoop()

    2017년 12월 19일 (화)
  • Tubeguy

    Необычно, однако.

    2017년 07월 17일 (월)
  • Tubeguy

    @greedylou install this: https://www.gta5-mods.com/scripts/mplowrider2-in-sp
    You can use some trainer to spawn gunrunning's vehicles, or I can do some rough-and-ready map with all those vehicles.

    2017년 06월 23일 (금)
  • Tubeguy

    Thanks! I thought this was over.

    2017년 06월 23일 (금)
  • Tubeguy

    @GeorgeZhang I managed to do some sort of multilanguage support for my script. You just need to use the native hash when you get the UI language ID. Here it is:

    int LANG = GTA.Native.Function.Call<int>(GTA.Native.Hash._0x2BDD44CC428A7EAE);
    if (LANG == 0) // ENGLISH
    {
    string VAR = "TEXT"; // DEFINE STRING VARIABLES OR LOAD THEM FROM EXTERNAL FILE
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 1) // FRENCH
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 2) // GERMAN
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 3) // ITALIAN
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 4) // SPANISH
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 5) // PORTUGUESE
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 6) // POLISH
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 7) // RUSSIAN
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 8) // KOREAN
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 9) // CHINESE
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 10) // JAPANESE
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else if (LANG == 11) // MEXICAN
    {
    string VAR = "TEXT";
    DoFurtherActions(VARIABLES);
    }
    else // NO LANGUAGE (NO TEXT?)
    {
    string VAR = "";
    DoFurtherActions(VARIABLES);
    }

    전체 댓글 확장하기
    2017년 05월 09일 (화)