Modification taille Maximum
Voici un patch à appliquer sur sources Mangos Nue pour débloquer la taille maximum.
Fonctionne avec la commande :
.modify scale

[code=diff]diff --git a/src/game/Level1.cpp b/src/game/Level1.cpp
index 1186818..48e4d8f 100644
--- a/src/game/Level1.cpp
+++ b/src/game/Level1.cpp
@@ -1189,7 +1189,7 @@ bool ChatHandler::HandleModifyScaleCommand(char* args)
return false;

float Scale = (float)atof(args);
- if (Scale > 10.0f || Scale <= 0.0f)
+ if (Scale > 30.0f || Scale <= 0.0f)
{
SendSysMessage(LANG_BAD_VALUE);
SetSentErrorMessage(true);[/code]

Have Fun !
Cordialement,
MacWarrior.

Retourner en haut Accueil