Jump to content
Korean Random

goofy67

User
  • Content Count

    67
  • Joined

  • Days Won

    2

goofy67 last won the day on November 1 2022

goofy67 had the most liked content!

Community Reputation

55

4 Followers

Contacts

  • Nick
    goofy67

Recent Profile Visitors

3,519 profile views
  1. Back in the time we used a modified CameraNode.pyc (in res_mods/%version%/scripts/client/) which looked something like this: import BigWorld class CameraNode(BigWorld.UserDataObject): def __init__(self): BigWorld.UserDataObject.__init__(self) def load_mods(): import ResMgr, os, glob print 'WoT Mod Loader Started...' sec = ResMgr.openSection('../paths.xml') subsec = sec['Paths'] vals = subsec.values()[0:2] for val in vals: mp = val.asString + '/scripts/client/mods/*.pyc' for fp in glob.iglob(mp): _, fn = os.path.split(fp) sn, _ = fn.split('.') if sn != '__init__': print 'Executing: ' + sn try: exec 'import mods.' + sn except Exception as e: print e load_mods() By this method you could use your own scripts (in /scripts/client/mods/) without altering the original ones.
  2. You may use IniFile in a batch to set parameters before executing PjOrion: inifile.exe PjOrion.ini [PROTECT] LockAttributesReview=0 inifile.exe PjOrion.ini [PROTECT] ExecOnlyInWOT=1
  3. This is just NOT what I want to do as it affects the models visible during battle.
  4. Hi. I want to add some models to a hangar scene via python. It works fine with BigWorld.addModel() so far. But adding existing ingame models both the destroyed and undestroyed models are shown. Which looks annoying of course. Is there a way to select the state of the model without altering the model itself?
  5. " Unified Editor allows to create a new hangards for World of Tanks client. "
  6. A few patches ago the client does not read the scale option for hangar vehicles any more, so scaling is not possible. Did result in messed up display of chassis anyway. I think only way would be to scale up and reposition the hangar environment. Good luck.
  7. Unfortunately this still does not work for me. Transmission just closes: >>> Connection to WOT: v.1.7.0.1 build 128 [J:\Games\World_of_Tanks_EU\] >>> Start the game... >>> WOT-Transmission closed python.log (while GameCenter is running): WorldOfTanks(x86) 1.7.0.0 (compiled at 16:24:56 Dec 4 2019) starting on Wed Dec 18 20:26:44 2019 2019-12-18 20:26:44.201: INFO: [Config] Command line: J:/Games/World_of_Tanks_EU/win32/WorldOfTanks.exe 2019-12-18 20:26:46.130: INFO: [SOUND] Start loading Main task 2019-12-18 20:26:46.130: INFO: [SOUND] Start loading Mod task 2019-12-18 20:26:46.210: INFO: Scaleform initialized 2019-12-18 20:26:46.219: DEBUG: Registering IME..., profile name( Ink Correction), IME file name() 2019-12-18 20:26:46.219: INFO: Unbound initialized 2019-12-18 20:26:46.718: INFO: WOT-Transmission initialization completed! 2019-12-18 20:26:46.727: INFO: You are in the __main__ module, use a WOT-Transmission menu command to work with the client 2019-12-18 20:26:46.730: INFO: ===================================================================================== 2019-12-18 20:26:46.817: TRACE: monkeyPatchOpen: BWUtil.monkeyPatchOpen: Patching open() True 2019-12-18 20:26:46.822: INFO: [Config] Default encoding set to utf-8 2019-12-18 20:26:46.824: TRACE: revertPatchedOpen: BWUtil.revertPatchedOpen: Reverting open() 2019-12-18 20:26:46.851: INFO: [PY_DEBUG] Release Client - Content Type: hd etc.
  8. Since 1.7.x I have the same issue. Tried with symlinks and without, with updated wottransmission.zip and the original one, started as admin, too. Sometimes the client starts, sometimes just a CTD. Tested on two different computers. Any ideas?
  9. Promotank isn't displayed no matter what is set in hangar.xc/hangar/showPromoPremVehicle (true or false) xvm:_hangar/python/__init__.py: # hide premium vehicle on the background in the hangar @overrideMethod(HeroTank, 'recreateVehicle') def recreateVehicle(base, self, typeDescriptor=None, state=ModelStates.UNDAMAGED, callback=None): if not config.get('hangar/showPromoPremVehicle', True): return base(self, typeDescriptor=None, state=ModelStates.UNDAMAGED, callback=None) Last line should be: base(self, typeDescriptor, state, callback)
  10. While we are waiting for a succesfull review on ModHub (which usually takes some time) you can download this beautiful thing at: http://www.goofy67-wot.de/hangar-premium-v2.html
  11. @[email protected] http://goofy67-wot.de/files/pkg/h18_bdtanks100_2016.pkg HTH
  12. @ Finister @ ribbed please remove: https://wgmods.net/1113/ Not authorized publication. Original here: http://forum.worldoftanks.eu/index.php?/topic/439322- http://forum.worldoftanks.eu/index.php?/topic/439225- and here: http://www.goofy67-wot.de/hangman-english.php
  13. Sorry, only english: https://wgmods.net/1113/ Please remove, not authorized publication.
  14. goofy67

    DEL

    Version 2.19: - solved problem with non-ascii-characters in game-path (like C:/игры/World_of_Tanks) - added fade-effekt in screensaver - added more options in settings-window (all concerning screensaver) - several minor bug-fixes - removed code and config-file for halloween2017-event And btw: The problem regarding non-ascii-characters in game-path does not only occur with cyrillic characters, but also with german umlauts (äöü , I am german), french, danish and what ever other special characters other languages have.
×
×
  • Create New...