mirror of
https://gitlab.com/hashborgir/plugy.git
synced 2025-10-14 00:44:23 -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<65>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<67>ffnet sind.
|
||||
- Lokalisiert in Englisch, Franz<6E>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 <20>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 <20>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 <20>nderungen :
|
||||
- PlugY funktioniert nun auch mit LoD 1.12 Versionen.
|
||||
- Ein paar Bugs behoben.
|
||||
- Eine neue M<>glichkeit zum Skills neuverteilen in Mods hinzugef<65>gt.
|
||||
|
||||
|
||||
v8.00 <20>nderungen :
|
||||
- Einfachere Installation : Neuer Installer.
|
||||
- Das Portal zum Cow-Level kann nun ge<67>ffnet werden auch wenn der Spieler den Cow-King in der aktuellen Schwierigkeit bereits get<65>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 <20>nderungen :
|
||||
- Behoben : Die Ladder-only Runenwortfeatures in den LoD-Versionen 1.11 und 1.10.
|
||||
- Behoben : Seltsame Zeichen in manchen Texten.
|
||||
|
||||
|
||||
v7.01 <20>nderungen :
|
||||
- Die Ladder-Only Runenw<6E>rter k<>nnen f<>r den Singleplayer aktivert werden.
|
||||
- Fehler bei der AI des <20>berbaals behoben
|
||||
@@ -81,7 +107,6 @@ v7.01
|
||||
- Eine eigene EXE wurde hinzugef<65>gt um PlugY zu starten (es werden keine LoD-Dateien mehr ver<65>ndert)
|
||||
- Spanische und Polnische <20>bersetzung hinzugef<65>gt.
|
||||
|
||||
|
||||
V7.00 <20>nderungen :
|
||||
- PlugY funktioniert nun auch mit LoD 1.11b Versionen.
|
||||
- Den Basiswert f<>r jeden Stat im Maus<75>bertext hinzugef<65>gt.
|
||||
@@ -89,17 +114,14 @@ V7.00
|
||||
- Behoben: Einige Features blieben auch im Battle.net aktiviert
|
||||
- Italienische <20>bersetzung hinzugef<65>gt.
|
||||
|
||||
|
||||
v6.01b <20>nderungen :
|
||||
- Fehler mit dem Popups der Statuspunktvergabe-Buttons behoben.
|
||||
|
||||
|
||||
v6.01 <20>nderungen :
|
||||
- Behoben : unique carry1 items verschwinden nicht wenn sie in LoD 1.10 gecubt werden
|
||||
- Schl<68>ssel und Uber-Organe werden nicht mehr entfernt wenn man das rote Portal ausserhalb von Harrogath <20>ffnen wollte.
|
||||
- Fehler in der Versionsanzeige wegen einem Konflikt mit D2Mod behoben.
|
||||
|
||||
|
||||
V6.00 <20>nderungen :
|
||||
- PlugY funktioniert nun auch mit LoD 1.11 Versionen
|
||||
- Freischaltung des <20>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<65>gt um das Spiel zu speichern ohne es zu verlassen (nur LoD 1.11).
|
||||
|
||||
|
||||
v5.06 <20>nderungen :
|
||||
- Kn<4B>pf for gemeinsamen Goldvorrat hinzugef<65>gt.
|
||||
- Gemeinsamer Goldvorrat in Multiplayer hinzugef<65>gt.
|
||||
- Befehl "/DisplayLifeMana" ersetzt durch "/dlm".
|
||||
- Diverse Fehler behoben.
|
||||
|
||||
|
||||
v5.05 <20>nderungen :
|
||||
- Standard Hintergrundfarbe im Status Interface ge<67>ndert
|
||||
- Gemeinsames Gold per Kommando hinzugef<65>gt.
|
||||
@@ -122,24 +142,20 @@ v5.05
|
||||
- M<>glichkeit die Namen von Setgegenst<73>nd in Gr<47>n bei Mouseover in der gemeinsamen Kiste anzuzeigen
|
||||
- Multiplayer Fehler behoben, indem der gesamte Prozess neu programmiert wurde
|
||||
|
||||
|
||||
v5.04 <20>nderungen :
|
||||
- Behoben : Status/Skill Punkte per Levelup bug.
|
||||
- Behoben : Multiplayer bugs.
|
||||
- PlugY/PlugYDefault.ini sind jetzt vollst<73>ndig.
|
||||
|
||||
|
||||
v5.03 <20>nderungen :
|
||||
- Behoben : Bug der manchmal zwischen den Hardcore und Softcore gemeinsamen Truhen gewechselt hat.
|
||||
- Farb<72>nderung der Schrift in den Extra-Seiten m<>glich.
|
||||
- Standartwerte in den Extra-Seiten ge<67>ndert.
|
||||
- EnabledTXTFilesWhenMSExcelOpenIt in der PlugY.ini ist nun standartm<74><6D>ig aktiviert.
|
||||
|
||||
|
||||
v5.02 <20>nderungen :
|
||||
- Behoben : Bug der das Verschwinden von Gegenst<73>nden hervorgerufen hat.
|
||||
|
||||
|
||||
v5.01 <20>nderungen :
|
||||
- Behoben : Gr<47><72>ere bugs bei der gemeinsamen Truhe.
|
||||
- Behoben : ActiveLogFile ist jetzt in der PlugY.ini standartm<74><6D>ig deaktiviert.
|
||||
@@ -160,14 +176,12 @@ v5.00
|
||||
- Behoben : Das Erscheinen des Diablo Klones am Spielstart.
|
||||
- Behoben : Andere kleine Bugs.
|
||||
|
||||
|
||||
v4.04 <20>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<73>hlen, ob die Mana und Lebens Anzeige immer <20>ber den Kugeln erscheint.
|
||||
|
||||
|
||||
v4.03 <20>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<75>tzlichen Status Seiten an die gleiche Stelle verschoben, wie die original Buttons (nur in 800x600)
|
||||
- Man kann ausw<73>hlen, ob die zuletzt angezeigte Seite erscheint, oder die Hauptseite
|
||||
|
||||
|
||||
v4.02b <20>nderungen :
|
||||
- Behoben : Alle Funktionen bleiben im offenen Battle.net eingeschaltet.
|
||||
|
||||
|
||||
v4.02 <20>nderungen :
|
||||
- Behoben : Das vergessene "d" in "SeparateHardcoreStash=1" in der PlugY.ini erg<72>nzt
|
||||
- Behoben : Standardm<64>ssig wird dei Sprache in der PlugY.ini nicht ge<67>ndert.
|
||||
@@ -211,29 +223,24 @@ v4.00
|
||||
- Behoben : Diablo Clone kann nicht mehr in Normal und Albtraum erscheinen
|
||||
- Behoben : Zerst<73>rung von zus<75>tzlichen Minions wenn man Fertigkeitspukte zur<75>cksetzt
|
||||
|
||||
|
||||
v3.02 <20>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 <20>nderungen :
|
||||
- Man kann die Statuspunkte <20>ndern, die man beim LevelUp bekommt.
|
||||
- Problem mit fehlerhafter Menge der Fertigkeitspunkte beim zur<75>cksetzen behoben.
|
||||
- Konfigurationsparameter f<>r den World Event hinzugef<65>gt
|
||||
- Standardm<64>ssig wird nur inH<6E>lle der World Event Z<>hler gezeigt "X SOJ verkauft".
|
||||
|
||||
|
||||
v3.00 <20>nderungen :
|
||||
- Lokaler World Event !
|
||||
- Zur<75>cksetzen von Fertigkeitspunkten
|
||||
|
||||
|
||||
v2.05 <20>nderungen :
|
||||
- Wichtiger Ffix : Alle Fehler die einen Start von Diablo2 verhinderten sind entfernt
|
||||
|
||||
|
||||
v2.04 <20>nderungen :
|
||||
- Das zur<75>cksetzen der Statuspunkte, sowie die Fertigkeiten pro LevelUp werden abgeschaltet, wenn man sich in ein Realm-Spiel einklinkt (wie bei der Goldkiste die Kn<4B>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<65>glich der verschwindenden Kn<4B>pfe behoben
|
||||
- Abspeicher-Problem unter Win95/98/Me behoben
|
||||
|
||||
|
||||
v2.03b <20>nderungen :
|
||||
- Anzeige der PlugY Version nur im Hauptbild
|
||||
|
||||
|
||||
v2.03 <20>nderungen :
|
||||
- Wichtigster Fix : Die Abspeicher-Routine ge<67>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<67>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 <20>nderungen :
|
||||
- PlugY nutzt die D2win.dll nicht mehr zum laden.
|
||||
- PlugY enth<74>lt einen Patcher/Ent-Patcher um die D2gfx.dll so zu ver<65>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 <20>nderungen
|
||||
- Fertigkeitsfehler beim LevelUp behoben.
|
||||
- Anzeigefehler im Hauptbildschirm behoben.
|
||||
|
||||
|
||||
v2.00 <20>nderungen :
|
||||
- Deutsche Lokalisierung hinzugef<65>gt.
|
||||
- Die Anzahl der Fertigkeitspunkte beim erreichen des n<>chsten Levels ist einstellbar.
|
||||
@@ -283,19 +285,16 @@ v2.00
|
||||
- Der Fehler mir carry1 Gegenst<73>nden wurde behoben (Uniques die nur einaml getragen werden d<>rfen)
|
||||
- Weitere kleine Verbesserungen eingebaut.
|
||||
|
||||
|
||||
v1.03 <20>nderungen :
|
||||
- Franz<6E>sische Liesmich- und Ini-Datei hinzugef<65>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 <20>nderungen :
|
||||
- Dateinamen ge<67>ndert wegen eines Fehlers mit dem IE und ZIP-Files
|
||||
- Man kann die Versions-Information im Hauptbildschirm <20>ndern (siehe Ini-Datei).
|
||||
|
||||
|
||||
v1.01 <20>nderungen :
|
||||
- Franz<6E>sische Lokalisierung hinzugef<65>gt (Franz<6E>sisches Liesmich.txt folgt)
|
||||
- Dateinamen von "PlugY, The Survival Kit.ini" in "PlugY,The_Survival_Kit" ge<67>ndert.
|
||||
@@ -305,7 +304,6 @@ v1.01
|
||||
(Man kann ihn weiterhin hinzuf<75>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<73>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<65>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<63>s <20> Battle.net
|
||||
- Espace de stockage infini dans le coffre (jusqu'<27> 4 294 967 296 pages personnelles!)
|
||||
- Espace de stockage partag<61> dans le coffre (jusqu'<27> 4 294 967 296 pages partag<61>es aussi!)
|
||||
- Espace de stockage infini dans le coffre !
|
||||
- Espace de stockage partag<61> 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<6C>.
|
||||
@@ -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<69> par defaut).
|
||||
- Affiche la valeur courante des caracs (sans les bonus magiques).
|
||||
- Localis<69> en fran<61>ais, anglais, allemand, italien, espagnol et polonais.
|
||||
- Ajout des commandes suivantes (les fonctions correspondantes doivent <20>tre activ<69>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 <20>tre ouverte, espace non obligatoire).
|
||||
/page 2 : Affiche la page des stats en plus (la page des stats doit <20>tre ouverte, espace non obligatoire).
|
||||
/page 3 : Affiche la page des stats de resistances (la page des stats doit <20>tre ouverte, espace non obligatoire).
|
||||
/page 4 : (b<>ta) Affiche la page des mots runiques actifs (la page des stats doit <20>tre ouverte, espace non obligatoire).
|
||||
/lockmouse : Bloque le curseur de la souris dans la fen<65>tre.
|
||||
/lock : Identique <20> /lockmouse.
|
||||
/pagename name : (b<>ta) Renomme la page courante du coffre (Ce nouveau nom n'est pas sauvegard<72>).
|
||||
/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<6F> partag<61>/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 <20> /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 <20> jour de la page des stats).
|
||||
/listcube : (b<>ta) Cr<43>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<61>e et le personnage au maximum d'or.
|
||||
|
||||
|
||||
Changements apport<72>s par la v10.01 :
|
||||
- Ajout du mode fen<65>tr<74>.
|
||||
- Peut bloquer le curseur de la souris dans la fen<65>tre. (mode fen<65>tr<74>).
|
||||
- Peut supprimer les bordure de la fen<65>tre (mode fen<65>tr<74>).
|
||||
- Peut redimensionner ou maximiser la fen<65>tre (mode fen<65>tr<74>).
|
||||
- Peut mettre la fen<65>tre au-dessus de toutes les autres fen<65>tres, y compris la barre des t<>ches (mode fen<65>tr<74>).
|
||||
- Permet de verrouiller le curseur de la souris dans les fen<65>tres au d<>marrage et avec la commande "/lockmouse" ou "/lock" (mode fen<65>tr<74>).
|
||||
- Ajout de la commande "/swap page" pour <20>changer le contenu de la page actuelle du coffre avec le contenu d'une autre "page".
|
||||
- Ajout de la commande "/toggle page" pour <20>changer le contenu de la page actuelle du coffre avec le contenu d'une autre "page" du coffre oppos<6F> (partag<61>/personnel).
|
||||
- Ajout de la commande "/rename newname" pour renommer son personnage. Cette fonctionnalit<69> est en b<>ta et vous devez quitter la partie pour mettre <20> jour la page des stats.
|
||||
|
||||
Changements apport<72>s par la v10.00 :
|
||||
- D<>sactive l'acc<63>s <20> 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<72>s par la v9.00 :
|
||||
- PlugY fonctionne aussi la version 1.12 de LOD.
|
||||
- Corrige diff<66>rents bugs.
|
||||
- Ajout d'une option pour le d<>assignement des skill dans les mods.
|
||||
|
||||
|
||||
Changements apport<72>s par la v8.00 :
|
||||
- Installation plus ais<69>e : Nouvel installeur.
|
||||
- Permet d'ouvrir le portail vers le Cow Level m<>me quand on a tuer le Cow King dans cette difficult<6C>.
|
||||
@@ -70,16 +98,13 @@ Changements apport
|
||||
- Multiplayer : Sauvegarde les fichiers du stash (avec les donn<6E>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<6F>dure de sauvegarde.
|
||||
- Remove the "check load memory failed" message when D2gfx.dll was patched.
|
||||
|
||||
|
||||
Changements apport<72>s par la v7.02 :
|
||||
- Corrige la perte de points de skills quand on les d<>salloue dans les mods contenant des skills sp<73>ciaux.
|
||||
|
||||
|
||||
Changements apport<72>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<63>res <20>tranges de quelques texts.
|
||||
|
||||
|
||||
Changements apport<72>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<65>cutable pour lancer Plugy (plus aucun fichier de LoD modifi<66>). (RAPPEL)
|
||||
- Traduction en espagnol et polonais.
|
||||
|
||||
|
||||
Changements apport<72>s par la v7.00 :
|
||||
- PlugY fonctionne aussi la version 1.11b de LOD.
|
||||
- Ajout d'un ex<65>cutable pour lancer Plugy (plus aucun fichier de LoD modifi<66>).
|
||||
@@ -97,17 +121,14 @@ Changements apport
|
||||
- Corrige les fonctions qui restais active sur Battle.net.
|
||||
- Traduction en italien.
|
||||
|
||||
|
||||
Changements apport<72>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<72>s par la v6.01 :
|
||||
- Corrige le bug qui cause la disparition des items "carry1" du stash quand ils sont cubb<62>s dans LoD 1.10
|
||||
- Cl<43>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<72>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<61>liorations mineurs.
|
||||
- Ajoute la commande "/save" pour sauvegarder la partie sans quitter (uniquement LoD 1.11).
|
||||
|
||||
|
||||
Changements apport<72>s par la v5.06 :
|
||||
- Ajoute des bouttons pour le partage de l'or.
|
||||
- Active l'or partag<61> en multijoueur.
|
||||
- La commande "/DisplayLifeMana" est remplac<61>e par "/dlm".
|
||||
- Corrige quelques bugs.
|
||||
|
||||
|
||||
Changements apport<72>s par la v5.05 :
|
||||
- Corrige les couleurs par d<>fauts dans l'interface des stats.
|
||||
- Ajoute de l'or partag<61>e via des commandes.
|
||||
@@ -130,30 +149,25 @@ Changements apport
|
||||
- Possiblit<69> d'afficher ou non les nom des objets de set dans le popup quand ceux-ci sont dans le coffre partag<61>e.
|
||||
- Correction des bugs du multiplayer (r<><72>criture de ces fonctions).
|
||||
|
||||
|
||||
Changements apport<72>s par la v5.04 :
|
||||
- Corrige Stat/Skill points par levelup
|
||||
- Corrige des bugs en Multiplayer.
|
||||
- PlugY/PlugYDefault.ini complet<65>.
|
||||
|
||||
|
||||
Changements apport<72>s par la v5.03 :
|
||||
- Corrige le bug qui <20>change quelques fois les coffres partag<61>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<72>s par la v5.02 :
|
||||
- Corrige la correction d'un bug pr<70>c<EFBFBD>dent qui engendre la disparition d'objets.
|
||||
|
||||
|
||||
Changements apport<72>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<61> est d<>sactiv<69>.
|
||||
|
||||
|
||||
Changements apport<72>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<EFBFBD>ration de DiabloClone au d<>marrage d'une nouvelle partie.
|
||||
- Corrige plusieurs autres bugs.
|
||||
|
||||
|
||||
Changements apport<72>s par la v4.04 :
|
||||
- Corrige le bug d'affichage quand statPerLevelUp est activ<69>
|
||||
- Corrige le bug de sauvegarde quand le disque dur est plein.
|
||||
- Nouveau syst<73>me de configuration pour les moddeurs.
|
||||
- Affiche toujours les valeurs num<75>riques de mana et de vie au-dessus des globes correspondants.
|
||||
|
||||
|
||||
Changements apport<72>s par la v4.03 :
|
||||
- Corrige le bug des objets uniques carry1 (charme unique) quand on drop le cube.
|
||||
- Possibilit<69> d'aller directement <20> la premi<6D>re ou derni<6E>re page du coffre (shift + clic sur pr<70>c<EFBFBD>dent/suivant).
|
||||
@@ -183,13 +195,11 @@ Changements apport
|
||||
- Ajouts d'infos sur les pages de stats suppl<70>mentaires (2 pages maintenant).
|
||||
- Ajoute un bouton "page pr<70>c<EFBFBD>dente" sur la principale page de stats (uniquement en 800x600).
|
||||
- D<>place les boutons des pages de stats suppl<70>mentaire aux m<>me emplacements que ceux de la page principale (uniquement en 800x600).
|
||||
- Possibilit<69> de choisir si la page affich<63>e quand on ouvre la page des stats est la page principale ou celle s<>lectionn<6E>e pr<70>c<EFBFBD>demment.
|
||||
|
||||
- Possibilit<69> de choisir si la page affich<63>e quand on ouvre la page des stats est la page principale ou celle s<>lectionn<6E>e pr<70>c<EFBFBD>demment
|
||||
|
||||
Changements apport<72>s par la v4.02b :
|
||||
- Les fonctionnalit<69>s restent activ<69>es sur Battle.net ouvert.
|
||||
|
||||
|
||||
Changements apport<72>s par la v4.02 :
|
||||
- Corrige le conflit avec Battle.net (BigStash d<>sactiv<69> 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<72>s par la v4.01 :
|
||||
- Corrige le bug du MSVCR70.dll non trouv<75>.
|
||||
- Ajouts d'infos sur la 2<>me page de stats.
|
||||
|
||||
|
||||
Changements apport<72>s par la v4.00b :
|
||||
- Corrige le bug du MSVCR70.dll non trouv<75>.
|
||||
|
||||
|
||||
Changements apport<72>s par la v4.00 :
|
||||
- Meilleure optimisation du code.
|
||||
- Ajoute des pages suppl<70>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<72>tre en mode normal et cauchemar.
|
||||
- Corrige : D<>truit les minions(par exemple les squelettes) en trop pr<70>s la d<>sallocation si on a un bonus +x dans cette skill.
|
||||
|
||||
|
||||
Changements apport<72>s par la v3.02 :
|
||||
- Corrige : le changement du nombre de points de Stats re<72>us <20> chaque gain de niveau.
|
||||
- Corrige : Quand le coffre partag<61> est d<>sactiv<69> vous pouvez charger vos persos.
|
||||
- Corrige : Vous pouvez changer les param<61>tres du World Event sans activer les skill re<72>us <20> chaque gain de niveau.
|
||||
|
||||
|
||||
Changements apport<72>s par la v3.01 :
|
||||
- Change le nombre de points de Stats re<72>us <20> chaque gain de niveau.
|
||||
- Corrige les bugs qui donnent des points suppl<70>mentaires quand on d<>sallouent les skills.
|
||||
- Ajoutent les param<61>tres du WorldEvent dans le fichier de configuration.
|
||||
- Par d<>faut, Le WorldEvent AFFICHE "X SOJ vendu" uniquement dans la difficult<6C> enfer.
|
||||
|
||||
|
||||
Changements apport<72>s par la v3.00 :
|
||||
- World Event en Local pour le monojoueur et le multijoueur hors royaumes !
|
||||
- D<>salloue les points de capacit<69>s(skills) pr<70>c<EFBFBD>demment allou<6F>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<61> est en rouge maintenant.
|
||||
|
||||
|
||||
Changements apport<72>s par la v2.05 :
|
||||
- Correction importante : Le bug qui faisais que D2 ne d<>marrais est d<>finitivement corrig<69>.
|
||||
|
||||
@@ -293,19 +296,13 @@ Changements apport
|
||||
|
||||
|
||||
******** INSTALLATION ********
|
||||
Les sites de t<>l<EFBFBD>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<62>.
|
||||
- Copier PlugY.ini, PlugY.exe et PlugY folder (+son sontenu) dans le r<>pertoire du mod cibl<62>.
|
||||
- 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<6C> Lord of Destruction ici : C:\Jeux\Diablo II\Diablo II.exe
|
||||
Et que le mod cibl<62> se trouve l<EFBFBD> : D:\D2Mod\MyMod\
|
||||
Et que un second mod se trouve l<EFBFBD> : D:\D2Mod\MyMod2\
|
||||
Et que le mod cibl<62> 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<69>; 1:Activ<69>}
|
||||
|
||||
|
||||
[WINDOWED]
|
||||
Lancement en mode fen<65>tr<74>.
|
||||
- ActiveWindowed=0 {0:D<>sactiv<69>; 1:Activ<69>}
|
||||
|
||||
Supprime le cadre de la fen<65>tre en mode fen<65>tr<74>.
|
||||
- RemoveBorder=0 {0:D<>sactiv<69>; 1:Activ<69>}
|
||||
|
||||
Met la fen<65>tre au plus haut (au-dessus de la barre des t<>ches) en mode fen<65>tr<74>.
|
||||
- WindowOnTop=0 {0:D<>sactiv<69>; 1:Activ<69>}
|
||||
|
||||
Fen<EFBFBD>tre centr<74>e et maximis<69>e (ratio maintenu <20> 4/3) en mode fen<65>tr<74> (si SetWindowPos = 0).
|
||||
- Maximized=0 {0:D<>sactiv<69>; 1:Activ<69>}
|
||||
|
||||
D<EFBFBD>finie la position et la taille de la fen<65>tre en mode fen<65>tr<74>.
|
||||
- SetWindowPos=0 {0:D<>sactiv<69>; 1:Activ<69>}
|
||||
- X=0 {0:Position X de la fen<65>tre}
|
||||
- Y=0 {0:Position Y de la fen<65>tre}
|
||||
- Width=0 {0:Largeur de la fen<65>tre}
|
||||
- Height=0 {0:Hauteur de la fen<65>tre}
|
||||
|
||||
Verrouiller le curseur da la souris dans la fen<65>tre en mode fen<65>tr<74>.
|
||||
- LockMouseOnStartup=0 {0:D<>sactiv<69>; 1:Activ<69>}
|
||||
|
||||
|
||||
[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