mirror of
https://gitlab.com/hashborgir/plugy.git
synced 2026-05-30 13:22:12 -05:00
updated from 10.00 to 10.01 by Yohann
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
; ;
|
||||
; by Yohann Nicolas ;
|
||||
; ;
|
||||
; version 10.00 ;
|
||||
; version 10.01 ;
|
||||
; ;
|
||||
;--------------------------------------------------------------------------------------;
|
||||
|
||||
@@ -28,6 +28,19 @@ ActiveCommands=1
|
||||
ActiveCheckMemory=1
|
||||
|
||||
|
||||
[WINDOWED]
|
||||
ActiveWindowed=0
|
||||
RemoveBorder=1
|
||||
WindowOnTop=1
|
||||
Maximized=1
|
||||
SetWindowPos=0
|
||||
X=0
|
||||
Y=0
|
||||
Width=0
|
||||
Height=0
|
||||
LockMouseOnStartup=1
|
||||
|
||||
|
||||
[LANGUAGE]
|
||||
;ENG|ESP|DEU|FRA|POR|ITA|JPN|KOR|SIN|CHI|POL|RUS
|
||||
ActiveChangeLanguage=0
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
!include "LogicLib.nsh"
|
||||
!include "MUI2.nsh"
|
||||
|
||||
!define VERSION "10.00"
|
||||
!define VERSION "10.01"
|
||||
!define D2FILES "."
|
||||
!define NAME "PlugY, The Survival Kit"
|
||||
!define MOD_DIR "Mod PlugY"
|
||||
@@ -18,7 +18,8 @@
|
||||
!define MUI_FINISHPAGE_NOAUTOCLOSE
|
||||
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
|
||||
!define MUI_FINISHPAGE_SHOWREADME "$(README_FILENAME)"
|
||||
!define MUI_FINISHPAGE_RUN "PlugY.exe"
|
||||
!define MUI_FINISHPAGE_RUN ;"PlugY.exe"
|
||||
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchPlugY"
|
||||
!define MUI_FINISHPAGE_RUN_NOTCHECKED
|
||||
!define MUI_FINISHPAGE_NOREBOOTSUPPORT
|
||||
!define MUI_ABORTWARNING
|
||||
@@ -106,6 +107,11 @@ Function Un.onInit
|
||||
ReadRegStr $D2Path HKLM "${REGKEY}" "PlugYDllPath"
|
||||
FunctionEnd
|
||||
|
||||
Function LaunchPlugY
|
||||
SetOutPath "$INSTDIR"
|
||||
ExecShell "" "$INSTDIR\PlugY.exe"
|
||||
FunctionEnd
|
||||
|
||||
;--------------------------------
|
||||
; Custom Page
|
||||
;Function OptionsPage
|
||||
@@ -151,8 +157,7 @@ Section "!$(SECTION_NAME_CORE)" Core
|
||||
File "${D2FILES}\PlugY_The_Survival_Kit_-_Readme.txt"
|
||||
File "${D2FILES}\PlugY_The_Survival_Kit_-_LisezMoi.txt"
|
||||
File "${D2FILES}\PlugY_The_Survival_Kit_-_Liesmich.txt"
|
||||
CreateDirectory "$D2Path\PlugY"
|
||||
setOutPath "$D2Path\PlugY"
|
||||
setOutPath "$INSTDIR\PlugY"
|
||||
File "${D2FILES}\PlugY\EmptyPage.dc6"
|
||||
File "${D2FILES}\PlugY\PlugYDefault.ini"
|
||||
File "${D2FILES}\PlugY\PlugYFixed.ini"
|
||||
@@ -175,7 +180,7 @@ Section $(SECTION_NAME_STARTMENU_SHORTCUTS) MenuShortcuts
|
||||
SectionIn 1
|
||||
CreateDirectory "$SMPROGRAMS\${NAME}"
|
||||
SetOutPath $INSTDIR
|
||||
CreateShortCut "$SMPROGRAMS\${NAME}\Uninstall.lnk" "$INSTDIR\${UNINSTALL_FILE}" "" "$INSTDIR\${UNINSTALL_FILE}" 0
|
||||
CreateShortCut "$SMPROGRAMS\${NAME}\Uninstaller.lnk" "$INSTDIR\${UNINSTALL_FILE}" "" "$INSTDIR\${UNINSTALL_FILE}" 0
|
||||
CreateShortCut "$SMPROGRAMS\${NAME}\${NAME}.lnk" "$INSTDIR\PlugY.exe" "" "$INSTDIR\PlugY.exe" 0
|
||||
SectionEnd
|
||||
|
||||
@@ -187,13 +192,13 @@ Section $(SECTION_NAME_UNINSTALLER) Uninstaller
|
||||
WriteUninstaller "${UNINSTALL_FILE}"
|
||||
|
||||
; Write the installation path into the registry
|
||||
WriteRegStr HKLM "${REGKEY}" "InstallPath" "$INSTDIR"
|
||||
WriteRegStr HKLM "${REGKEY}" "InstallPath" $INSTDIR
|
||||
WriteRegStr HKLM "${REGKEY}" "PlugYDllPath" "$D2Path"
|
||||
|
||||
; Write the uninstall keys for Windows
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${NAME}" "InstallLocation" "$$INSTDIR"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${NAME}" "DisplayName" "${NAME}"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${NAME}" "HelpLink" "http://djaftal.chez-alice.fr/"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${NAME}" "HelpLink" "http://plugy.free.fr"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${NAME}" "DisplayVersion" "${VERSION}"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${NAME}" "UninstallString" '"$INSTDIR\${UNINSTALL_FILE}"'
|
||||
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${NAME}" "NoModify" 1
|
||||
@@ -224,6 +229,7 @@ Section "Uninstall" Uninstall
|
||||
Delete "$D2Path\RestoreD2gfxDll.exe"
|
||||
Delete "$INSTDIR\PlugY.exe"
|
||||
Delete "$INSTDIR\PlugY.log"
|
||||
Delete "$INSTDIR\BnetLog.txt"
|
||||
Delete "$INSTDIR\PlugY.ini"
|
||||
Delete "$INSTDIR\PlugY_The_Survival_Kit_-_Readme.txt"
|
||||
Delete "$INSTDIR\PlugY_The_Survival_Kit_-_LisezMoi.txt"
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
; ;
|
||||
; by Yohann Nicolas ;
|
||||
; ;
|
||||
; version 10.00 ;
|
||||
; version 10.01 ;
|
||||
; ;
|
||||
;--------------------------------------------------------------------------------------;
|
||||
|
||||
@@ -25,6 +25,19 @@ ActiveCheckMemory=1
|
||||
ActiveAllOthersFeatures=0
|
||||
|
||||
|
||||
[WINDOWED]
|
||||
ActiveWindowed=0
|
||||
RemoveBorder=0
|
||||
WindowOnTop=0
|
||||
Maximized=0
|
||||
SetWindowPos=0
|
||||
X=0
|
||||
Y=0
|
||||
Width=0
|
||||
Height=0
|
||||
LockMouseOnStartup=0
|
||||
|
||||
|
||||
[LANGUAGE]
|
||||
;ENG|ESP|DEU|FRA|POR|ITA|JPN|KOR|SIN|CHI|POL|RUS
|
||||
ActiveChangeLanguage=0
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
; ;
|
||||
; by Yohann Nicolas ;
|
||||
; ;
|
||||
; version 10.00 ;
|
||||
; version 10.01 ;
|
||||
; ;
|
||||
;--------------------------------------------------------------------------------------;
|
||||
|
||||
@@ -16,6 +16,8 @@
|
||||
|
||||
[GENERAL]
|
||||
|
||||
[WINDOWED]
|
||||
|
||||
[LANGUAGE]
|
||||
|
||||
[SAVEPATH]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
;--------------------------------------------------------------------------------------;
|
||||
; ;
|
||||
; "PlugY, The Survival Kit" ;
|
||||
; "PlugY, The Survival Kit" ;
|
||||
; ;
|
||||
; von Yohann Nicolas ;
|
||||
; ;
|
||||
; version 10.00 ;
|
||||
; version 10.01 ;
|
||||
; ;
|
||||
;--------------------------------------------------------------------------------------;
|
||||
|
||||
@@ -20,7 +20,7 @@ WARNUNG:
|
||||
- PlugY.ini wurde stark verändert, bitte nehmt die Neue!
|
||||
- Vergesst nicht den Teil: "Kommentare zur Konfigurations-Datei" zu lesen.
|
||||
- Bitte lest im PlugY-Forum:
|
||||
http://phrozenkeep.planetdiablo.gamespy.com/forum/viewforum.php?f=133
|
||||
http://d2mods.info/forum/viewforum.php?f=133
|
||||
|
||||
|
||||
******** ALLE FUNKTIONEN ********
|
||||
@@ -43,20 +43,48 @@ WARNUNG:
|
||||
- Man kann die Versionsanzeige im Hauptbildschirm anpassen.
|
||||
- Diablo kann nun auf Text-Dateien laden die von Microsoft Excel geöffnet sind.
|
||||
- Lokalisiert in Englisch, Französisch, Deutsch, Italienisch, Spanisch, Polnisch.
|
||||
- Add following commands (the corresponding functions must be enabled in PlugY.ini) :
|
||||
/save : Save game without exit.
|
||||
/reload : Reload gamble page.
|
||||
/page 1 : Show normal stats page (stats page must be opened, space not mandatory).
|
||||
/page 2 : Show extra stats page (stats page must be opened, space not mandatory).
|
||||
/page 3 : Show resistance stats page (stats page must be opened, space not mandatory).
|
||||
/page 4 : (beta) Show available runewords (stats page must be opened, space not mandatory).
|
||||
/lockmouse : Lock mouse cursor in the window.
|
||||
/lock : same as /lockmouse.
|
||||
/pagename name : (beta) Rename current page stash (the new name isn't saved).
|
||||
/swap page : Swap the content of current stash page with the content of another page (space not mandatory).
|
||||
/toggle page : Swap the content of current stash page with the content of another page in opposing stash shared/personal (space not mandatory).
|
||||
/dlm : Toggle always display mana and life mode. (Since 1.13c, you can click on the bottom of each orbs)
|
||||
/dml : Same as /dlm.
|
||||
/dl : Toggle always display life mode. (Since 1.13c, you can click on the bottom of the orb)
|
||||
/dm : Toggle always display mana mode. (Since 1.13c, you can click on the bottom of the orb)
|
||||
/rename newname : (beta) rename your character and save it. (You must exit the game to update the stats page.)
|
||||
/listcube : (beta) Create a "cube.txt" file in current directory containing all cube's receipts.
|
||||
/maxgold : CHEAT don't use in normal game. Set personnal stash, shared stash and character to max gold.
|
||||
|
||||
|
||||
v10.01 Änderungen :
|
||||
- Add windowed mode.
|
||||
- Can lock mouse cursor in the window (windowed mode).
|
||||
- Can remove border (windowed mode).
|
||||
- Can resize or maximize window (windowed mode).
|
||||
- Can fix window above any others windows including taskbar (windowed mode).
|
||||
- Can lock mouse cursor in the windows on startup and with command "/lockmouse" or "/lock" (windowed mode).
|
||||
- Add command "/swap page" to swap the content of current stash page with the content of another page.
|
||||
- Add command "/toggle page" to swap the content of current stash page with the content of another page in opposing stash shared/personal.
|
||||
- Add command "/rename newname" to rename your character. This feature is still in beta and you must exit the game to update the stats page.
|
||||
|
||||
v10.00 Änderungen :
|
||||
- Disable access to Battle.net via main menu button.
|
||||
- PlugY funktioniert nun auch mit LoD 1.13c Versionen.
|
||||
- Fix shortcut in start menu
|
||||
|
||||
|
||||
v9.00 Änderungen :
|
||||
- PlugY funktioniert nun auch mit LoD 1.12 Versionen.
|
||||
- Ein paar Bugs behoben.
|
||||
- Eine neue Möglichkeit zum Skills neuverteilen in Mods hinzugefügt.
|
||||
|
||||
|
||||
v8.00 Änderungen :
|
||||
- Einfachere Installation : Neuer Installer.
|
||||
- Das Portal zum Cow-Level kann nun geöffnet werden auch wenn der Spieler den Cow-King in der aktuellen Schwierigkeit bereits getötet hat.
|
||||
@@ -67,12 +95,10 @@ v8.00
|
||||
- Multiplayer : Die Truhendaten werden jetzt korrekt gespeichert wenn es einen Disconnect oder einen Fehler während des Speicherns gibt.
|
||||
- Die "check load memory failed" Meldung, wenn die D2gfx.dll gepachtt war, wurde entfernt.
|
||||
|
||||
|
||||
v7.01b Änderungen :
|
||||
- Behoben : Die Ladder-only Runenwortfeatures in den LoD-Versionen 1.11 und 1.10.
|
||||
- Behoben : Seltsame Zeichen in manchen Texten.
|
||||
|
||||
|
||||
v7.01 Änderungen :
|
||||
- Die Ladder-Only Runenwörter können für den Singleplayer aktivert werden.
|
||||
- Fehler bei der AI des Überbaals behoben
|
||||
@@ -81,7 +107,6 @@ v7.01
|
||||
- Eine eigene EXE wurde hinzugefügt um PlugY zu starten (es werden keine LoD-Dateien mehr verändert)
|
||||
- Spanische und Polnische Übersetzung hinzugefügt.
|
||||
|
||||
|
||||
V7.00 Änderungen :
|
||||
- PlugY funktioniert nun auch mit LoD 1.11b Versionen.
|
||||
- Den Basiswert für jeden Stat im Mausübertext hinzugefügt.
|
||||
@@ -89,17 +114,14 @@ V7.00
|
||||
- Behoben: Einige Features blieben auch im Battle.net aktiviert
|
||||
- Italienische Übersetzung hinzugefügt.
|
||||
|
||||
|
||||
v6.01b Änderungen :
|
||||
- Fehler mit dem Popups der Statuspunktvergabe-Buttons behoben.
|
||||
|
||||
|
||||
v6.01 Änderungen :
|
||||
- Behoben : unique carry1 items verschwinden nicht wenn sie in LoD 1.10 gecubt werden
|
||||
- Schlüssel und Uber-Organe werden nicht mehr entfernt wenn man das rote Portal ausserhalb von Harrogath öffnen wollte.
|
||||
- Fehler in der Versionsanzeige wegen einem Konflikt mit D2Mod behoben.
|
||||
|
||||
|
||||
V6.00 Änderungen :
|
||||
- PlugY funktioniert nun auch mit LoD 1.11 Versionen
|
||||
- Freischaltung des Über-Quests ausserhalb von der Realm (LoD 1.11 only).
|
||||
@@ -107,14 +129,12 @@ V6.00
|
||||
- Kleine Fehler behoben, und kleine Verbesserungen eingebaut
|
||||
- "/save"-Befehl hinzugefügt um das Spiel zu speichern ohne es zu verlassen (nur LoD 1.11).
|
||||
|
||||
|
||||
v5.06 Änderungen :
|
||||
- Knöpf for gemeinsamen Goldvorrat hinzugefügt.
|
||||
- Gemeinsamer Goldvorrat in Multiplayer hinzugefügt.
|
||||
- Befehl "/DisplayLifeMana" ersetzt durch "/dlm".
|
||||
- Diverse Fehler behoben.
|
||||
|
||||
|
||||
v5.05 Änderungen :
|
||||
- Standard Hintergrundfarbe im Status Interface geändert
|
||||
- Gemeinsames Gold per Kommando hinzugefügt.
|
||||
@@ -122,24 +142,20 @@ v5.05
|
||||
- Möglichkeit die Namen von Setgegenständ in Grün bei Mouseover in der gemeinsamen Kiste anzuzeigen
|
||||
- Multiplayer Fehler behoben, indem der gesamte Prozess neu programmiert wurde
|
||||
|
||||
|
||||
v5.04 Änderungen :
|
||||
- Behoben : Status/Skill Punkte per Levelup bug.
|
||||
- Behoben : Multiplayer bugs.
|
||||
- PlugY/PlugYDefault.ini sind jetzt vollständig.
|
||||
|
||||
|
||||
v5.03 Änderungen :
|
||||
- Behoben : Bug der manchmal zwischen den Hardcore und Softcore gemeinsamen Truhen gewechselt hat.
|
||||
- Farbänderung der Schrift in den Extra-Seiten möglich.
|
||||
- Standartwerte in den Extra-Seiten geändert.
|
||||
- EnabledTXTFilesWhenMSExcelOpenIt in der PlugY.ini ist nun standartmäßig aktiviert.
|
||||
|
||||
|
||||
v5.02 Änderungen :
|
||||
- Behoben : Bug der das Verschwinden von Gegenständen hervorgerufen hat.
|
||||
|
||||
|
||||
v5.01 Änderungen :
|
||||
- Behoben : Größere bugs bei der gemeinsamen Truhe.
|
||||
- Behoben : ActiveLogFile ist jetzt in der PlugY.ini standartmäßig deaktiviert.
|
||||
@@ -160,14 +176,12 @@ v5.00
|
||||
- Behoben : Das Erscheinen des Diablo Klones am Spielstart.
|
||||
- Behoben : Andere kleine Bugs.
|
||||
|
||||
|
||||
v4.04 Änderungen :
|
||||
- Behoben : Anzeige-bug wenn StatPerLevelUp aktiviert war.
|
||||
- Behoben : Fehler bei der Speicherprozedur wenn die Festplatte voll war.
|
||||
- Neues Konfigurations-System für Modder.
|
||||
- Man kann auswählen, ob die Mana und Lebens Anzeige immer über den Kugeln erscheint.
|
||||
|
||||
|
||||
v4.03 Änderungen
|
||||
- Behoben: Wenn man einen "carry1" - einzigartigen Gegenstand (einzigartiger Zauber) in den Würfel steckt
|
||||
- Man kann direkt zur ersten und letzten Seite der Kiste gehen (shift + klick auf Nächste/Vorherige Seite)
|
||||
@@ -177,11 +191,9 @@ v4.03
|
||||
- Button für die zusätzlichen Status Seiten an die gleiche Stelle verschoben, wie die original Buttons (nur in 800x600)
|
||||
- Man kann auswählen, ob die zuletzt angezeigte Seite erscheint, oder die Hauptseite
|
||||
|
||||
|
||||
v4.02b Änderungen :
|
||||
- Behoben : Alle Funktionen bleiben im offenen Battle.net eingeschaltet.
|
||||
|
||||
|
||||
v4.02 Änderungen :
|
||||
- Behoben : Das vergessene "d" in "SeparateHardcoreStash=1" in der PlugY.ini ergänzt
|
||||
- Behoben : Standardmässig wird dei Sprache in der PlugY.ini nicht geändert.
|
||||
@@ -211,29 +223,24 @@ v4.00
|
||||
- Behoben : Diablo Clone kann nicht mehr in Normal und Albtraum erscheinen
|
||||
- Behoben : Zerstörung von zusätzlichen Minions wenn man Fertigkeitspukte zurücksetzt
|
||||
|
||||
|
||||
v3.02 Änderungen :
|
||||
- Fehler im Bereich Statuspunkte pro LevelUp behoben
|
||||
- Fehler behoben der verhinderte das bei abgeschalteter gemeinsamer Kiste ein Charkter nicht geladen werden konnte.
|
||||
- Fehler behoben der es erlaubte Werte zu setzen, ohne das Fertigkeiten pro LevelUp aktiviert waren.
|
||||
|
||||
|
||||
v3.01 Änderungen :
|
||||
- Man kann die Statuspunkte ändern, die man beim LevelUp bekommt.
|
||||
- Problem mit fehlerhafter Menge der Fertigkeitspunkte beim zurücksetzen behoben.
|
||||
- Konfigurationsparameter für den World Event hinzugefügt
|
||||
- Standardmässig wird nur inHölle der World Event Zähler gezeigt "X SOJ verkauft".
|
||||
|
||||
|
||||
v3.00 Änderungen :
|
||||
- Lokaler World Event !
|
||||
- Zurücksetzen von Fertigkeitspunkten
|
||||
|
||||
|
||||
v2.05 Änderungen :
|
||||
- Wichtiger Ffix : Alle Fehler die einen Start von Diablo2 verhinderten sind entfernt
|
||||
|
||||
|
||||
v2.04 Änderungen :
|
||||
- Das zurücksetzen der Statuspunkte, sowie die Fertigkeiten pro LevelUp werden abgeschaltet, wenn man sich in ein Realm-Spiel einklinkt (wie bei der Goldkiste die Knöpfe)
|
||||
- Es wird eine Fehlermeldung angezeigt, anstelle eines Absturzes, wenn PlugY.dll nicht gefunden werden kann
|
||||
@@ -241,11 +248,9 @@ v2.04
|
||||
- Einen Fehler bezüglich der verschwindenden Knöpfe behoben
|
||||
- Abspeicher-Problem unter Win95/98/Me behoben
|
||||
|
||||
|
||||
v2.03b Änderungen :
|
||||
- Anzeige der PlugY Version nur im Hauptbild
|
||||
|
||||
|
||||
v2.03 Änderungen :
|
||||
- Wichtigster Fix : Die Abspeicher-Routine geändert, damit bei einem Spiel-Absturz keine Items in der Kiste verloren gehen, und der Charakter korrupt wird.
|
||||
- Kein Absturz des Host Spiels, wenn ein Charakter nicht ins Spiel kann.
|
||||
@@ -253,7 +258,6 @@ v2.03
|
||||
- Die Versionsanzeige auf der Hauptseite geändert (PlugY Version jetzt rechts, und Farben sind nun möglich)
|
||||
- Charaktere ohne PlugY können nun an Spielen teilnehmen die gehosted werden von PlugY-Spilern.
|
||||
|
||||
|
||||
v2.02 Änderungen :
|
||||
- PlugY nutzt die D2win.dll nicht mehr zum laden.
|
||||
- PlugY enthält einen Patcher/Ent-Patcher um die D2gfx.dll so zu verändern, das PlugY gestartet wird.
|
||||
@@ -261,12 +265,10 @@ v2.02
|
||||
- Die Goldkistenerweiterung wird bei Realm Spielen automatisch abgeschaltet.
|
||||
- Index Button Fehler behoben.
|
||||
|
||||
|
||||
v.2.01 Änderungen
|
||||
- Fertigkeitsfehler beim LevelUp behoben.
|
||||
- Anzeigefehler im Hauptbildschirm behoben.
|
||||
|
||||
|
||||
v2.00 Änderungen :
|
||||
- Deutsche Lokalisierung hinzugefügt.
|
||||
- Die Anzahl der Fertigkeitspunkte beim erreichen des nächsten Levels ist einstellbar.
|
||||
@@ -283,19 +285,16 @@ v2.00
|
||||
- Der Fehler mir carry1 Gegenständen wurde behoben (Uniques die nur einaml getragen werden dürfen)
|
||||
- Weitere kleine Verbesserungen eingebaut.
|
||||
|
||||
|
||||
v1.03 Änderungen :
|
||||
- Französische Liesmich- und Ini-Datei hinzugefügt.
|
||||
- Fehler in D2Classic-Spielen entfernt (es gibt dort keine Seiten-Erweiterungen, dies ist kein Fehler)
|
||||
- Fehler behoben, der beim laden mit vor LOD 1.10 generierten Charakteren auftrat.
|
||||
(zB: ShadowMaster Charakter oder 1.09 oder D2Classic Charakter)
|
||||
|
||||
|
||||
v1.02 Änderungen :
|
||||
- Dateinamen geändert wegen eines Fehlers mit dem IE und ZIP-Files
|
||||
- Man kann die Versions-Information im Hauptbildschirm ändern (siehe Ini-Datei).
|
||||
|
||||
|
||||
v1.01 Änderungen :
|
||||
- Französische Lokalisierung hinzugefügt (Französisches Liesmich.txt folgt)
|
||||
- Dateinamen von "PlugY, The Survival Kit.ini" in "PlugY,The_Survival_Kit" geändert.
|
||||
@@ -305,7 +304,6 @@ v1.01
|
||||
(Man kann ihn weiterhin hinzufügen, sollte aber wissen, was man tut...)
|
||||
- Paket von .rar auf .zip umgestellt
|
||||
|
||||
|
||||
v1.00 Funktionen (es können alle einfach ein- und ausgeschaltet werden) :
|
||||
- Man kann den "Save"-Pfad anpassen.
|
||||
- Man kann jeden MOD starten, ohne die gesicherten Spielstände verschieben zu müssen.
|
||||
@@ -340,11 +338,6 @@ v1.00 Funktionen (es k
|
||||
|
||||
|
||||
******** INSTALLATION ********
|
||||
- The officials sites are :
|
||||
http://djaftal.chez-alice.fr/
|
||||
http://phrozenkeep.18v.biz/dload.php?action=category&cat_id=128
|
||||
http://diablo2.judgehype.com/index.php?page=telechargements
|
||||
|
||||
Installation :
|
||||
- Entpacke alle Dateien in dein Diablo Verzeichnis.
|
||||
- Kopiere die PlugY.ini und die PlugY.exe in das Verzeichnis in dem dein Mod ist.
|
||||
@@ -532,6 +525,30 @@ Nur Ausschalten wenn du weist was du machst.
|
||||
- ActiveCheckMemory=1
|
||||
|
||||
|
||||
[WINDOWED]
|
||||
Launch in windowed mode.
|
||||
- ActiveWindowed=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Remove border in windowed mode.
|
||||
- RemoveBorder=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Set window at most top (above taskbar) in windowed mode.
|
||||
- WindowOnTop=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Maximized and center window (keep ratio 4/3) in windowed mode (if SetWindowPos=0).
|
||||
- Maximized=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Set position and size of the window in windowed mode.
|
||||
- SetWindowPos=0 {0:Disabled; 1:Enabled}
|
||||
- X=0 {0:Window Position X}
|
||||
- Y=0 {0:Window Position Y}
|
||||
- Width=0 {0:Window Width}
|
||||
- Height=0 {0:Window Height}
|
||||
|
||||
Lock cursor mouse in the window in windowed mode.
|
||||
- LockMouseOnStartup=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
|
||||
[LANGUAGE]
|
||||
Wechselt die ausgewählte Sprache
|
||||
Ihr müsst die Dateien der Sprache besitzen!!!
|
||||
@@ -753,4 +770,4 @@ Zur Korrektur der deutschen
|
||||
* Spanish : Acrerune
|
||||
* Polnisch : Serdel
|
||||
|
||||
~~~~~~~~~~~~
|
||||
;--------------------------------------------------------------------------------------;
|
||||
@@ -4,7 +4,7 @@
|
||||
; ;
|
||||
; par Yohann Nicolas ;
|
||||
; ;
|
||||
; version 10.00 ;
|
||||
; version 10.01 ;
|
||||
; ;
|
||||
;--------------------------------------------------------------------------------------;
|
||||
|
||||
@@ -23,13 +23,13 @@ Vous pouvez y faire un don si vous le souhaitez.
|
||||
- Les moddeurs devraient lire la version anglaise de ce readme.
|
||||
- N'oubliez pas de lire les forums :
|
||||
http://forum.judgehype.com/judgehype/ModsetModding/liste_sujet-1.htm
|
||||
http://phrozenkeep.planetdiablo.gamespy.com/forum/viewforum.php?f=133 (anglais)
|
||||
http://d2mods.info/forum/viewforum.php?f=133 (anglais)
|
||||
|
||||
|
||||
******** CARACTERISTIQUES ********
|
||||
- Désactive l'accès à Battle.net
|
||||
- Espace de stockage infini dans le coffre (jusqu'à 4 294 967 296 pages personnelles!)
|
||||
- Espace de stockage partagé dans le coffre (jusqu'à 4 294 967 296 pages partagées aussi!)
|
||||
- Espace de stockage infini dans le coffre !
|
||||
- Espace de stockage partagé dans le coffre !
|
||||
- Active les mots runiques du ladder en dehors des royaumes.
|
||||
- World Event et Uber Quest en Local pour le monojoueur et le multijoueur hors royaumes !
|
||||
- Permet d'ouvrir le portail vers le Cow Level même quand on a tuer le Cow King dans cette difficulté.
|
||||
@@ -46,20 +46,48 @@ Vous pouvez y faire un don si vous le souhaitez.
|
||||
- D2 peut charger tout les fichiers, même ceux ouvert par Microsoft Excel (désactivé par defaut).
|
||||
- Affiche la valeur courante des caracs (sans les bonus magiques).
|
||||
- Localisé en français, anglais, allemand, italien, espagnol et polonais.
|
||||
- Ajout des commandes suivantes (les fonctions correspondantes doivent être activées dans PlugY.ini) :
|
||||
/save : Sauvegarde la partie sans quitter.
|
||||
/reload : Recharge la page des paris.
|
||||
/page 1 : Affiche la page des stats de base (la page des stats doit être ouverte, espace non obligatoire).
|
||||
/page 2 : Affiche la page des stats en plus (la page des stats doit être ouverte, espace non obligatoire).
|
||||
/page 3 : Affiche la page des stats de resistances (la page des stats doit être ouverte, espace non obligatoire).
|
||||
/page 4 : (bêta) Affiche la page des mots runiques actifs (la page des stats doit être ouverte, espace non obligatoire).
|
||||
/lockmouse : Bloque le curseur de la souris dans la fenêtre.
|
||||
/lock : Identique à /lockmouse.
|
||||
/pagename name : (bêta) Renomme la page courante du coffre (Ce nouveau nom n'est pas sauvegardé).
|
||||
/swap page : Echange le contenu de la page actuelle du coffre avec le contenu d'une autre "page" (espace non obligatoire).
|
||||
/toggle page : Echanger le contenu de la page actuelle du coffre avec le contenu d'une autre "page" du coffre opposé partagé/personnel (espace non obligatoire).
|
||||
/dlm : Inverse le mode d'affichage: Toujours afficher les valeurs de vie et de mana. (Depuis 1.13c, on peut clicker sur le bas de l'orbe)
|
||||
/dml : Identique à /dlm.
|
||||
/dl : Inverse le mode d'affichage: Toujours afficher les valeurs de vie. (Depuis 1.13c, on peut clicker sur le bas de l'orbe)
|
||||
/dm : Inverse le mode d'affichage: Toujours afficher les valeurs de mana. (Depuis 1.13c, on peut clicker sur le bas de l'orbe)
|
||||
/rename newname : (bêta) Renomme la personnage et le sauvegarde (Vous devez quitter la partie pour la mise à jour de la page des stats).
|
||||
/listcube : (bêta) Crée un fichier "cube.txt" dans le répertoire courant contenant toutes les formules actives du cube.
|
||||
/maxgold : CHEAT ne pas utiliser en partie normal. Remplit le coffre personnel, celui partagée et le personnage au maximum d'or.
|
||||
|
||||
|
||||
Changements apportés par la v10.01 :
|
||||
- Ajout du mode fenêtré.
|
||||
- Peut bloquer le curseur de la souris dans la fenêtre. (mode fenêtré).
|
||||
- Peut supprimer les bordure de la fenêtre (mode fenêtré).
|
||||
- Peut redimensionner ou maximiser la fenêtre (mode fenêtré).
|
||||
- Peut mettre la fenêtre au-dessus de toutes les autres fenêtres, y compris la barre des tâches (mode fenêtré).
|
||||
- Permet de verrouiller le curseur de la souris dans les fenêtres au démarrage et avec la commande "/lockmouse" ou "/lock" (mode fenêtré).
|
||||
- Ajout de la commande "/swap page" pour échanger le contenu de la page actuelle du coffre avec le contenu d'une autre "page".
|
||||
- Ajout de la commande "/toggle page" pour échanger le contenu de la page actuelle du coffre avec le contenu d'une autre "page" du coffre opposé (partagé/personnel).
|
||||
- Ajout de la commande "/rename newname" pour renommer son personnage. Cette fonctionnalité est en bêta et vous devez quitter la partie pour mettre à jour la page des stats.
|
||||
|
||||
Changements apportés par la v10.00 :
|
||||
- Désactive l'accès à Battle.net par le bouton du menu principal.
|
||||
- PlugY fonctionne aussi la version 1.13c de LOD.
|
||||
- Corrige le raccourci dans le menu démarrer.
|
||||
|
||||
|
||||
Changements apportés par la v9.00 :
|
||||
- PlugY fonctionne aussi la version 1.12 de LOD.
|
||||
- Corrige différents bugs.
|
||||
- Ajout d'une option pour le déassignement des skill dans les mods.
|
||||
|
||||
|
||||
Changements apportés par la v8.00 :
|
||||
- Installation plus aisée : Nouvel installeur.
|
||||
- Permet d'ouvrir le portail vers le Cow Level même quand on a tuer le Cow King dans cette difficulté.
|
||||
@@ -70,16 +98,13 @@ Changements apport
|
||||
- Multiplayer : Sauvegarde les fichiers du stash (avec les données du client comme avec les versions d'avant 5.00) quand il y a une déconnection ou une erreur apparait durant la procédure de sauvegarde.
|
||||
- Remove the "check load memory failed" message when D2gfx.dll was patched.
|
||||
|
||||
|
||||
Changements apportés par la v7.02 :
|
||||
- Corrige la perte de points de skills quand on les désalloue dans les mods contenant des skills spéciaux.
|
||||
|
||||
|
||||
Changements apportés par la v7.01b :
|
||||
- Corrige l'activation des mots runiques du ladder dans les versions 1.11 and 1.10 de LoD.
|
||||
- Corrige les caractères étranges de quelques texts.
|
||||
|
||||
|
||||
Changements apportés par la v7.01 :
|
||||
- Active les mots runiques du ladder en dehors des royaumes.
|
||||
- Corrige le bug avec l'IA de Uber Baal.
|
||||
@@ -88,7 +113,6 @@ Changements apport
|
||||
- Ajout d'un exécutable pour lancer Plugy (plus aucun fichier de LoD modifié). (RAPPEL)
|
||||
- Traduction en espagnol et polonais.
|
||||
|
||||
|
||||
Changements apportés par la v7.00 :
|
||||
- PlugY fonctionne aussi la version 1.11b de LOD.
|
||||
- Ajout d'un exécutable pour lancer Plugy (plus aucun fichier de LoD modifié).
|
||||
@@ -97,17 +121,14 @@ Changements apport
|
||||
- Corrige les fonctions qui restais active sur Battle.net.
|
||||
- Traduction en italien.
|
||||
|
||||
|
||||
Changements apportés par la v6.01b :
|
||||
- Correction d'un bug avec l'affichage du popup sur les bouttons d'assignement des points de stats.
|
||||
|
||||
|
||||
Changements apportés par la v6.01 :
|
||||
- Corrige le bug qui cause la disparition des items "carry1" du stash quand ils sont cubbés dans LoD 1.10
|
||||
- Clés et organes des uber ne sont plus détruit quant on essaie d'ouvrir le portail en dehors d'Harrogath.
|
||||
- Corrige le conflit avec D2Mod pour l'affichage de la version.
|
||||
|
||||
|
||||
Changements apportés par la v6.00 :
|
||||
- PlugY fonctionne aussi la version 1.11 de LOD.
|
||||
- Active la Uber Quest hors des Royaumes. (uniquement LoD 1.11).
|
||||
@@ -115,14 +136,12 @@ Changements apport
|
||||
- Corrige quelques bugs mineurs et ajoute des améliorations mineurs.
|
||||
- Ajoute la commande "/save" pour sauvegarder la partie sans quitter (uniquement LoD 1.11).
|
||||
|
||||
|
||||
Changements apportés par la v5.06 :
|
||||
- Ajoute des bouttons pour le partage de l'or.
|
||||
- Active l'or partagé en multijoueur.
|
||||
- La commande "/DisplayLifeMana" est remplacée par "/dlm".
|
||||
- Corrige quelques bugs.
|
||||
|
||||
|
||||
Changements apportés par la v5.05 :
|
||||
- Corrige les couleurs par défauts dans l'interface des stats.
|
||||
- Ajoute de l'or partagée via des commandes.
|
||||
@@ -130,30 +149,25 @@ Changements apport
|
||||
- Possiblité d'afficher ou non les nom des objets de set dans le popup quand ceux-ci sont dans le coffre partagée.
|
||||
- Correction des bugs du multiplayer (réécriture de ces fonctions).
|
||||
|
||||
|
||||
Changements apportés par la v5.04 :
|
||||
- Corrige Stat/Skill points par levelup
|
||||
- Corrige des bugs en Multiplayer.
|
||||
- PlugY/PlugYDefault.ini completé.
|
||||
|
||||
|
||||
Changements apportés par la v5.03 :
|
||||
- Corrige le bug qui échange quelques fois les coffres partagés Hardcore et Softcore.
|
||||
- Ajoute de la couleur sur les nouvelles pages de stats.
|
||||
- Change les valeurs par défaut des nouvelles pages de stats.
|
||||
- Mets EnabledTXTFilesWhenMSExcelOpenIt=1 dans le fichier PlugY.ini.
|
||||
|
||||
|
||||
Changements apportés par la v5.02 :
|
||||
- Corrige la correction d'un bug précédent qui engendre la disparition d'objets.
|
||||
|
||||
|
||||
Changements apportés par la v5.01 :
|
||||
- Corrige les bugs importants dans la gestion du stash.
|
||||
- Remets ActiveLogFile=0 par défaut dans le fichier PlugY.ini.
|
||||
- Corrige : Bug quand le stash partagé est désactivé.
|
||||
|
||||
|
||||
Changements apportés par la v5.00 :
|
||||
- PlugY fonctionne sur les mods des versions 1.09, 1.09b, 1.09d et 1.10 de LOD.
|
||||
- PlugY peut lancer D2Mod.dll.
|
||||
@@ -168,14 +182,12 @@ Changements apport
|
||||
- Corrige la génération de DiabloClone au démarrage d'une nouvelle partie.
|
||||
- Corrige plusieurs autres bugs.
|
||||
|
||||
|
||||
Changements apportés par la v4.04 :
|
||||
- Corrige le bug d'affichage quand statPerLevelUp est activé
|
||||
- Corrige le bug de sauvegarde quand le disque dur est plein.
|
||||
- Nouveau système de configuration pour les moddeurs.
|
||||
- Affiche toujours les valeurs numériques de mana et de vie au-dessus des globes correspondants.
|
||||
|
||||
|
||||
Changements apportés par la v4.03 :
|
||||
- Corrige le bug des objets uniques carry1 (charme unique) quand on drop le cube.
|
||||
- Possibilité d'aller directement à la première ou dernière page du coffre (shift + clic sur précédent/suivant).
|
||||
@@ -183,13 +195,11 @@ Changements apport
|
||||
- Ajouts d'infos sur les pages de stats supplémentaires (2 pages maintenant).
|
||||
- Ajoute un bouton "page précédente" sur la principale page de stats (uniquement en 800x600).
|
||||
- Déplace les boutons des pages de stats supplémentaire aux même emplacements que ceux de la page principale (uniquement en 800x600).
|
||||
- Possibilité de choisir si la page affichée quand on ouvre la page des stats est la page principale ou celle sélectionnée précédemment.
|
||||
|
||||
- Possibilité de choisir si la page affichée quand on ouvre la page des stats est la page principale ou celle sélectionnée précédemment
|
||||
|
||||
Changements apportés par la v4.02b :
|
||||
- Les fonctionnalités restent activées sur Battle.net ouvert.
|
||||
|
||||
|
||||
Changements apportés par la v4.02 :
|
||||
- Corrige le conflit avec Battle.net (BigStash désactivé sur les royaumes)
|
||||
- Corrige l'oublie du "d" de "SeparateHardcoreStash=1" de PlugY.ini
|
||||
@@ -197,16 +207,13 @@ Changements apport
|
||||
- Corrige l'activation de l'affichage de l'item level pour toutes les configurations de PlugY.
|
||||
- Ajouts d'infos sur la 2ème page de stats.
|
||||
|
||||
|
||||
Changements apportés par la v4.01 :
|
||||
- Corrige le bug du MSVCR70.dll non trouvé.
|
||||
- Ajouts d'infos sur la 2ème page de stats.
|
||||
|
||||
|
||||
Changements apportés par la v4.00b :
|
||||
- Corrige le bug du MSVCR70.dll non trouvé.
|
||||
|
||||
|
||||
Changements apportés par la v4.00 :
|
||||
- Meilleure optimisation du code.
|
||||
- Ajoute des pages supplémentaires pour l'affichage de plus de statistiques du perso comme le %MF.
|
||||
@@ -224,20 +231,17 @@ Changements apport
|
||||
- Corrige : Diablo Clone ne peut pas apparaître en mode normal et cauchemar.
|
||||
- Corrige : Détruit les minions(par exemple les squelettes) en trop près la désallocation si on a un bonus +x dans cette skill.
|
||||
|
||||
|
||||
Changements apportés par la v3.02 :
|
||||
- Corrige : le changement du nombre de points de Stats reçus à chaque gain de niveau.
|
||||
- Corrige : Quand le coffre partagé est désactivé vous pouvez charger vos persos.
|
||||
- Corrige : Vous pouvez changer les paramètres du World Event sans activer les skill reçus à chaque gain de niveau.
|
||||
|
||||
|
||||
Changements apportés par la v3.01 :
|
||||
- Change le nombre de points de Stats reçus à chaque gain de niveau.
|
||||
- Corrige les bugs qui donnent des points supplémentaires quand on désallouent les skills.
|
||||
- Ajoutent les paramètres du WorldEvent dans le fichier de configuration.
|
||||
- Par défaut, Le WorldEvent AFFICHE "X SOJ vendu" uniquement dans la difficulté enfer.
|
||||
|
||||
|
||||
Changements apportés par la v3.00 :
|
||||
- World Event en Local pour le monojoueur et le multijoueur hors royaumes !
|
||||
- Désalloue les points de capacités(skills) précédemment allouées.
|
||||
@@ -245,7 +249,6 @@ Changements apport
|
||||
- On peut changer le nom du fichier de sauvegarde.
|
||||
- L'affichage du numero de page pour le coffre partagé est en rouge maintenant.
|
||||
|
||||
|
||||
Changements apportés par la v2.05 :
|
||||
- Correction importante : Le bug qui faisais que D2 ne démarrais est définitivement corrigé.
|
||||
|
||||
@@ -293,19 +296,13 @@ Changements apport
|
||||
|
||||
|
||||
******** INSTALLATION ********
|
||||
Les sites de téléchargement officiel sont :
|
||||
http://djaftal.chez-alice.fr/
|
||||
http://phrozenkeep.18v.biz/dload.php?action=category&cat_id=128
|
||||
http://diablo2.judgehype.com/index.php?page=telechargements
|
||||
|
||||
|
||||
Installation normale :
|
||||
- Suivre les directives de l'installeur.
|
||||
|
||||
note : Vous pouvez choisir le répertoire de "Diablo II" comme répertoire d'installation.
|
||||
|
||||
Installation dans un autre mod
|
||||
- Copier PlugY.ini, PlugY.exe er PlugY folder (+son sontenu) dans le répertoire du mod ciblé.
|
||||
- Copier PlugY.ini, PlugY.exe et PlugY folder (+son sontenu) dans le répertoire du mod ciblé.
|
||||
- Editer PlugY.ini pour configurer les options (voir section plus bas).
|
||||
- Lancer le jeu PlugY.exe et amusez-vous :)
|
||||
|
||||
@@ -314,8 +311,8 @@ note : Vous pouvez d
|
||||
|
||||
Exemple :
|
||||
Si vous avez installé Lord of Destruction ici : C:\Jeux\Diablo II\Diablo II.exe
|
||||
Et que le mod ciblé se trouve là : D:\D2Mod\MyMod\
|
||||
Et que un second mod se trouve là : D:\D2Mod\MyMod2\
|
||||
Et que le mod ciblé se trouve dans : D:\D2Mod\MyMod\
|
||||
Et qu'un second mod se trouve dans : D:\D2Mod\MyMod2\
|
||||
Alors la configuration classique est ceci :
|
||||
C:\Jeux\Diablo II\PlugY.dll
|
||||
D:\D2Mod\MyMod\PlugY\SharedGoldBtns.dc6
|
||||
@@ -492,6 +489,30 @@ Active les fonctions cach
|
||||
- ActiveAllOthersFeatures=0 {0:Désactivé; 1:Activé}
|
||||
|
||||
|
||||
[WINDOWED]
|
||||
Lancement en mode fenêtré.
|
||||
- ActiveWindowed=0 {0:Désactivé; 1:Activé}
|
||||
|
||||
Supprime le cadre de la fenêtre en mode fenêtré.
|
||||
- RemoveBorder=0 {0:Désactivé; 1:Activé}
|
||||
|
||||
Met la fenêtre au plus haut (au-dessus de la barre des tâches) en mode fenêtré.
|
||||
- WindowOnTop=0 {0:Désactivé; 1:Activé}
|
||||
|
||||
Fenêtre centrée et maximisée (ratio maintenu à 4/3) en mode fenêtré (si SetWindowPos = 0).
|
||||
- Maximized=0 {0:Désactivé; 1:Activé}
|
||||
|
||||
Définie la position et la taille de la fenêtre en mode fenêtré.
|
||||
- SetWindowPos=0 {0:Désactivé; 1:Activé}
|
||||
- X=0 {0:Position X de la fenêtre}
|
||||
- Y=0 {0:Position Y de la fenêtre}
|
||||
- Width=0 {0:Largeur de la fenêtre}
|
||||
- Height=0 {0:Hauteur de la fenêtre}
|
||||
|
||||
Verrouiller le curseur da la souris dans la fenêtre en mode fenêtré.
|
||||
- LockMouseOnStartup=0 {0:Désactivé; 1:Activé}
|
||||
|
||||
|
||||
[LANGUAGE]
|
||||
Change la langue du jeu.
|
||||
Vous devez avoir les fichiers de langue choisi.
|
||||
@@ -702,4 +723,5 @@ PS : D
|
||||
* Italien : ItalianPlayer
|
||||
* Espagnol : Acrerune
|
||||
* Polonais : Serdel
|
||||
~~~~~~~~~~~~
|
||||
|
||||
;--------------------------------------------------------------------------------------;
|
||||
@@ -4,7 +4,7 @@
|
||||
; ;
|
||||
; by Yohann Nicolas ;
|
||||
; ;
|
||||
; version 10.00 ;
|
||||
; version 10.01 ;
|
||||
; ;
|
||||
;--------------------------------------------------------------------------------------;
|
||||
|
||||
@@ -20,13 +20,13 @@ You can make a donation if you want.
|
||||
- PlugY.ini has changed since previous version, use the one in this package.
|
||||
- Don't forget to read the part named "COMMENTS ON THE CONFIGURATION FILE".
|
||||
- Don't forget to read the PlugY forum at :
|
||||
http://phrozenkeep.planetdiablo.gamespy.com/forum/viewforum.php?f=133
|
||||
http://d2mods.info/forum/viewforum.php?f=133
|
||||
|
||||
|
||||
******** FEATURES ********
|
||||
- Disable access to Battle.net.
|
||||
- Infinite storage space in the stash (up to 4,294,967,296 personal pages!)
|
||||
- Shared storage space in the stash (up to 4,294,967,296 shared pages too!)
|
||||
- Infinite storage space in the stash.
|
||||
- Shared storage space in the stash.
|
||||
- Enabled the ladder only runewords out of realms.
|
||||
- Local World Event and Uber Quest for singleplayer and multiplayer off-realm !
|
||||
- Can open Cow Level Portal even when player have kill the Cow King in that difficulty.
|
||||
@@ -42,21 +42,50 @@ You can make a donation if you want.
|
||||
- Always display Mana and Life values above the globes.
|
||||
- D2 can load all files, even those opened with Microsoft Excel (disabled by default).
|
||||
- Display the stats current value (without magical bonus) like Magic/gold find or maximum resistances.
|
||||
- Can launch game in windowed mode with some options (lock mouse/resize/on top/noborder).
|
||||
- PlugY is localized in English, French, German, Italian, Spanish, Polish.
|
||||
- Add following commands (the corresponding functions must be enabled in PlugY.ini) :
|
||||
/save : Save game without exit.
|
||||
/reload : Reload gamble page.
|
||||
/page 1 : Show normal stats page (stats page must be opened, space not mandatory).
|
||||
/page 2 : Show extra stats page (stats page must be opened, space not mandatory).
|
||||
/page 3 : Show resistance stats page (stats page must be opened, space not mandatory).
|
||||
/page 4 : (beta) Show available runewords (stats page must be opened, space not mandatory).
|
||||
/lockmouse : Lock mouse cursor in the window.
|
||||
/lock : same as /lockmouse.
|
||||
/pagename name : (beta) Rename current page stash (the new name isn't saved).
|
||||
/swap page : Swap the content of current stash page with the content of another page (space not mandatory).
|
||||
/toggle page : Swap the content of current stash page with the content of another page in opposing stash shared/personal (space not mandatory).
|
||||
/dlm : Toggle always display mana and life mode. (Since 1.13c, you can click on the bottom of each orbs)
|
||||
/dml : Same as /dlm.
|
||||
/dl : Toggle always display life mode. (Since 1.13c, you can click on the bottom of the orb)
|
||||
/dm : Toggle always display mana mode. (Since 1.13c, you can click on the bottom of the orb)
|
||||
/rename newname : (beta) rename your character and save it. (You must exit the game to update the stats page.)
|
||||
/listcube : (beta) Create a "cube.txt" file in current directory containing all cube's receipts.
|
||||
/maxgold : CHEAT don't use in normal game. Set personnal stash, shared stash and character to max gold.
|
||||
|
||||
|
||||
v10.01 changes :
|
||||
- Add windowed mode.
|
||||
- Can lock mouse cursor in the window (windowed mode).
|
||||
- Can remove border (windowed mode).
|
||||
- Can resize or maximize window (windowed mode).
|
||||
- Can fix window above any others windows including taskbar (windowed mode).
|
||||
- Can lock mouse cursor in the windows on startup and with command "/lockmouse" or "/lock" (windowed mode).
|
||||
- Add command "/swap page" to swap the content of current stash page with the content of another page.
|
||||
- Add command "/toggle page" to swap the content of current stash page with the content of another page in opposing stash shared/personal.
|
||||
- Add command "/rename newname" to rename your character. This feature is still in beta and you must exit the game to update the stats page.
|
||||
|
||||
v10.00 changes :
|
||||
- Disable access to Battle.net via main menu button.
|
||||
- PlugY works for 1.13c version of LoD too.
|
||||
- Fix shortcut in start menu
|
||||
|
||||
|
||||
v9.00 changes :
|
||||
- PlugY works for 1.12 version of LoD too.
|
||||
- Fix somes bugs.
|
||||
- Add option for unassign skill for mods.
|
||||
|
||||
|
||||
v8.00 changes :
|
||||
- Easier installation : New installer.
|
||||
- Can open Cow Level Portal even when player have kill the Cow King in that difficulty.
|
||||
@@ -67,12 +96,10 @@ v8.00 changes :
|
||||
- Multiplayer : Save stash files (with client's data like version before 5.00) when a deconnection or error happend during saving process.
|
||||
- Remove the "check load memory failed" message when D2gfx.dll was patched.
|
||||
|
||||
|
||||
v7.01b changes :
|
||||
- Fix the ladder only runewords features in versions 1.11 and 1.10 of LoD.
|
||||
- Fix wierd characters in some text.
|
||||
|
||||
|
||||
v7.01 changes :
|
||||
- Enabled the ladder only runewords out of realms.
|
||||
- Fixed Uber Baal AI.
|
||||
@@ -81,7 +108,6 @@ v7.01 changes :
|
||||
- Add an executable to launch PlugY (no more LoD's files modified) (RECALL)
|
||||
- Translation into spanish and polish.
|
||||
|
||||
|
||||
v7.00 changes :
|
||||
- PlugY works for 1.11b version of LoD too.
|
||||
- Add an executable to launch PlugY (no more LoD's files modified)
|
||||
@@ -90,17 +116,14 @@ v7.00 changes :
|
||||
- Fix features which stayed enabled on Battle.net.
|
||||
- Translation into italian.
|
||||
|
||||
|
||||
v6.01b changes :
|
||||
- Bug fix with the display of popup on stat assignment buttons.
|
||||
|
||||
|
||||
v6.01 changes :
|
||||
- Major fix : unique carry1 items don't disappear when they are cubbed in LoD 1.10
|
||||
- Keys and Uber organs aren't destroyed when we try to open a Red Porpal out of Harrogath.
|
||||
- Fix conflict with D2Mod for the version display.
|
||||
|
||||
|
||||
v6.00 changes :
|
||||
- PlugY works for 1.11 version of LoD too !
|
||||
- Enabled Uber Quest off realm (LoD 1.11 only).
|
||||
@@ -108,14 +131,12 @@ v6.00 changes :
|
||||
- Fixed some minor bugs and added some minor improvements.
|
||||
- Added command "/save" to save the game without exit (LoD 1.11 only).
|
||||
|
||||
|
||||
v5.06 changes :
|
||||
- Added buttons for shared gold.
|
||||
- Enabled shared gold in multiplayer.
|
||||
- Command "/DisplayLifeMana" is replaced by "/dlm".
|
||||
- Fixed some bugs.
|
||||
|
||||
|
||||
v5.05 changes :
|
||||
- Fixed bad default color in interface stats.
|
||||
- Added Shared gold via commands.
|
||||
@@ -123,30 +144,25 @@ v5.05 changes :
|
||||
- Display green set item name in popup when it's in the shared stash.
|
||||
- Fixed multiplayer bugs by redoing multiplayer procedure.
|
||||
|
||||
|
||||
v5.04 changes :
|
||||
- Fixed : Stat/Skill points per level-up bug.
|
||||
- Fixed : Multiplayer bugs.
|
||||
- PlugY/PlugYDefault.ini completed.
|
||||
|
||||
|
||||
v5.03 changes :
|
||||
- Fixed : Bug which sometimes swaps Hardcore and Softcore shared stash.
|
||||
- Added color on extra stats page.
|
||||
- Changed default values on extra stats page.
|
||||
- Set EnabledTXTFilesWhenMSExcelOpenIt=1 in PlugY.ini file.
|
||||
|
||||
|
||||
v5.02 changes :
|
||||
- Fixed : Previous bug fix which caused items to disappear.
|
||||
|
||||
|
||||
v5.01 changes :
|
||||
- Fixed : Major bugs in stash management.
|
||||
- Fixed : Set back PlugY.ini with ActiveLogFile=0 by default.
|
||||
- Fixed : bug when shared stash is disabled.
|
||||
|
||||
|
||||
v5.00 changes :
|
||||
- PlugY works for 1.09, 1.09b, 1.09d versions of LoD, including mods based on these releases !
|
||||
- PlugY can load D2Mod.dll.
|
||||
@@ -161,14 +177,12 @@ v5.00 changes :
|
||||
- Fixed : The spawn of DiabloClone at starting of a new game
|
||||
- Fixed : Some other small bugs.
|
||||
|
||||
|
||||
v4.04 changes :
|
||||
- Fixed : Display bug when statPerLevelUp enabled.
|
||||
- Fixed : Bug in saving procedure when the disk is full.
|
||||
- New configuration system for modders.
|
||||
- Always display Mana and Life values above the globes.
|
||||
|
||||
|
||||
v4.03 changes :
|
||||
- Fixed : "carry 1" unique item (unique charm) when we drop the cube.
|
||||
- Can go directly to first or last page of stash (shift + click on next/previous).
|
||||
@@ -178,7 +192,6 @@ v4.03 changes :
|
||||
- Moved buttons in extra stats pages to same place as in main stats page (only in 800x600).
|
||||
- Can choose whether the main (first) page or the last selected page is displayed on opening the stats page.
|
||||
|
||||
|
||||
v4.02b changes :
|
||||
- Fixed : Features stay enabled in open Battle.net
|
||||
|
||||
@@ -190,16 +203,13 @@ v4.02 changes :
|
||||
- Fixed : Item level display enabled correctly for all configurations of PlugY.
|
||||
- Added data in the extra stats page.
|
||||
|
||||
|
||||
v4.01 changes :
|
||||
- Fixed : NbPlayers always set to 8 when active.
|
||||
- Added data in the extra stats page.
|
||||
|
||||
|
||||
v4.00b changes :
|
||||
- Fixed : MSVCR70.dll not found bug.
|
||||
|
||||
|
||||
v4.00 changes :
|
||||
- Better optimization of the code.
|
||||
- Added some pages for displaying more characters stats like %MF.
|
||||
@@ -217,20 +227,17 @@ v4.00 changes :
|
||||
- Fixed : Diablo Clone can't spawn in normal and nightmare difficulty.
|
||||
- Fixed : Destruction of extra minions after unassignment if you have +x bonus to the skill.
|
||||
|
||||
|
||||
v3.02 changes :
|
||||
- Fixed : Change the number of stats points gained when player gains a level.
|
||||
- Fixed : When the shared stash is disabled, you can load a game with your character.
|
||||
- Fixed : You can change parameters of World Event without activating skill per level up.
|
||||
|
||||
|
||||
v3.01 changes :
|
||||
- Change the number of stats points gained when player gains a level.
|
||||
- Fixed bugs which give extra points when skills points are unassigned.
|
||||
- Added parameters for the WorldEvent in configuration file.
|
||||
- By default, World Event only SHOWS "X SOJ Sold" in hell difficulty.
|
||||
|
||||
|
||||
v3.00 changes :
|
||||
- Local World Event for singleplayer and multiplayer off-realm !
|
||||
- Unassign assigned skills points.
|
||||
@@ -238,11 +245,9 @@ v3.00 changes :
|
||||
- Can change the filename of the shared savefile.
|
||||
- Shared stash page number display are in red now.
|
||||
|
||||
|
||||
v2.05 changes :
|
||||
- major fix : bugs which cause D2 not to start are finally removed.
|
||||
|
||||
|
||||
v2.04 changes :
|
||||
- Unassign stats points, skills on level up are disabled when you connect to realm (like stash).
|
||||
- Open a error message box instead of crash when PlugY.dll isn't found by D2.
|
||||
@@ -250,11 +255,9 @@ v2.04 changes :
|
||||
- Fixed bug display of buttons.
|
||||
- Fixed win95/98/Me saving.
|
||||
|
||||
|
||||
v2.03b changes :
|
||||
- Show PlugY version only in main screen.
|
||||
|
||||
|
||||
v2.03 changes :
|
||||
- Major fix : Correct and secure the saving procedure.
|
||||
- No more crash of the host game when a character is unable to enter the game.
|
||||
@@ -262,7 +265,6 @@ v2.03 changes :
|
||||
- Change version printing on main screen (change color & PlugY version in right corner)
|
||||
- Character without PlugY can join game host with PlugY enabled.
|
||||
|
||||
|
||||
v2.02 changes :
|
||||
- PlugY doesn't use D2win.dll to launch PlugY anymore.
|
||||
- PlugY includes a patcher/unpatcher for editing D2gfx.dll to launch PlugY.
|
||||
@@ -270,12 +272,10 @@ v2.02 changes :
|
||||
- The infinite storage sytem is automatically disabled on a realm game.
|
||||
- Fixed index button bugs.
|
||||
|
||||
|
||||
v2.01 changes :
|
||||
- Fixed skill per level up bug
|
||||
- Fixed bug display of text in the main menu
|
||||
|
||||
|
||||
v2.00 changes :
|
||||
- Localized in German.
|
||||
- Change the number of Skills points gained when player gains a level.
|
||||
@@ -292,7 +292,6 @@ v2.00 changes :
|
||||
- Removed the bug of "carry 1"
|
||||
- Add other small improvements... :)
|
||||
|
||||
|
||||
v1.03 changes :
|
||||
- Added French readme and ini files.
|
||||
- Removed bugs in D2Classic game (there is no multipage, it's not a bug)
|
||||
@@ -302,12 +301,10 @@ v1.03 changes :
|
||||
* must read : You can start any mods without moving SAVES files
|
||||
(you need to move dll files with classic script).
|
||||
|
||||
|
||||
v1.02 changes :
|
||||
- Re-changed name files due to an IE bug with colon in zip file.
|
||||
- Ability to change the version text print in the main menu (see ini file).
|
||||
|
||||
|
||||
v1.01 changes :
|
||||
- Localized for french version (wait for an french readme.txt)
|
||||
- Changed filename from "PlugY, The Survival Kit.ini" to "PlugY,The_Survival_Kit".
|
||||
@@ -317,7 +314,6 @@ v1.01 changes :
|
||||
(you can add it if you want but need to know what are you doing...)
|
||||
- Released in .zip file instead of .rar
|
||||
|
||||
|
||||
v1.00 features (can all be easily enabled or disabled) :
|
||||
- You can change the save path directory.
|
||||
- You can start any mods without moving saves files.
|
||||
@@ -353,12 +349,6 @@ v1.00 features (can all be easily enabled or disabled) :
|
||||
|
||||
|
||||
******** INSTALLATION ********
|
||||
- The officials sites are :
|
||||
http://djaftal.chez-alice.fr/
|
||||
http://phrozenkeep.18v.biz/dload.php?action=category&cat_id=128
|
||||
http://diablo2.judgehype.com/index.php?page=telechargements
|
||||
|
||||
|
||||
Normal Installation :
|
||||
- Follow directive installer.
|
||||
|
||||
@@ -548,17 +538,14 @@ Following are default values, between {} are some examples values with descripti
|
||||
- ActivePlugin=0 {0:Don't load any features; 1:Plugin enabled}
|
||||
|
||||
Enable or disable BattleNet Access.
|
||||
Following are default values, between {} are some examples values with descriptions :
|
||||
- DisableBattleNet=1 {0:Battle.net access enable; 1:Battle.net access disable}
|
||||
|
||||
Create a log file "PlugY.log" in the current directory.
|
||||
This feature can slow down your game.
|
||||
Following are default values, between {} are some examples values with descriptions :
|
||||
- ActiveLogFile=0 {0:No information is written while playing; 1:Always enabled}
|
||||
|
||||
Load dll of a specific mod for used PlugY in same time.
|
||||
Separate each dll file name by the character pipe (|)
|
||||
Following are default values, between {} are some examples values with descriptions :
|
||||
- DllToLoad= {(empty): load nothing; D2extra.dll|myDll.dll: Load both D2extra.dll and myDll.dll}
|
||||
- DllToLoad2= {(empty): Same as DlltoLoad}
|
||||
|
||||
@@ -576,6 +563,30 @@ Activate hidden or not-finished feature. (don't use it)
|
||||
- ActiveAllOthersFeatures=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
|
||||
[WINDOWED]
|
||||
Launch in windowed mode.
|
||||
- ActiveWindowed=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Remove border in windowed mode.
|
||||
- RemoveBorder=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Set window at most top (above taskbar) in windowed mode.
|
||||
- WindowOnTop=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Maximized and center window (keep ratio 4/3) in windowed mode (if SetWindowPos=0).
|
||||
- Maximized=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
Set position and size of the window in windowed mode.
|
||||
- SetWindowPos=0 {0:Disabled; 1:Enabled}
|
||||
- X=0 {0:Window Position X}
|
||||
- Y=0 {0:Window Position Y}
|
||||
- Width=0 {0:Window Width}
|
||||
- Height=0 {0:Window Height}
|
||||
|
||||
Lock cursor mouse in the window in windowed mode.
|
||||
- LockMouseOnStartup=0 {0:Disabled; 1:Enabled}
|
||||
|
||||
|
||||
[LANGUAGE]
|
||||
Change the selected language.
|
||||
You must have files of the selected language.
|
||||
@@ -657,6 +668,7 @@ Following are default values, between {} are some examples values with descripti
|
||||
|
||||
|
||||
[STAT ON LEVEL UP]
|
||||
WARNING : CHEAT, DON'T USE IN NORMAL GAME.
|
||||
Change the number of Stats Points you receive when your character gains a level.
|
||||
Following are default values, between {} are some examples values with descriptions :
|
||||
- ActiveStatPerLevelUp=0 {0:Disabled; 1:Enabled}
|
||||
@@ -676,6 +688,7 @@ Following are default values, between {} are some examples values with descripti
|
||||
|
||||
|
||||
[SKILL ON LEVEL UP]
|
||||
WARNING : CHEAT, DON'T USE IN NORMAL GAME.
|
||||
Change the number of Skills Points you receive when your character gains a level.
|
||||
Following are default values, between {} are some examples values with descriptions :
|
||||
- ActiveSkillPerLevelUp=0 {0:Disabled; 1:Enabled}
|
||||
@@ -786,4 +799,5 @@ PS : Sorry for english faults ;)
|
||||
* Italian : ItalianPlayer
|
||||
* Spanish : Acrerune
|
||||
* Polish : Serdel
|
||||
~~~~~~~~~~~~
|
||||
|
||||
;--------------------------------------------------------------------------------------;
|
||||
Reference in New Issue
Block a user