Jump to content

V0iĐ

Premium
  • Posts

    154
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Posts posted by V0iĐ

  1. @ReFresh

    https://msdn.microsoft.com/en-us/library/ms235519(v=vs.90).aspx

    @Da'Real Pain

    Open the ScriptLib folder search the PythonLauncher.cpp file and search this:

    PyModule_AddIntConstant(builtins, "TRUE", 1);

    And this:

    PyModule_AddIntConstant(builtins, "FALSE", 0);

    And add under these:

    PyModule_AddIntConstant(builtins, "True", 1);
    PyModule_AddIntConstant(builtins, "true", 1);
    PyModule_AddIntConstant(builtins, "False", 0);
    PyModule_AddIntConstant(builtins, "false", 0);

    And rebuild the binary
    • Love 1
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.