Aller au contenu

Photo

Help with script


51 réponses à ce sujet

#51
Lotion Soronarr

Lotion Soronarr
  • Members
  • 14 481 messages
Hm...I also can't seem to find where exactly is the 5hp per level specified for CONSTITUTION. I want to turn that into 10 HP per level

#52
Lotion Soronarr

Lotion Soronarr
  • Members
  • 14 481 messages
Hrk...added another PRSCR file to add an other character to another location (the docks at the mage circle)

Thing is, the character doesn't appear. Is there a limit of somekind? Can there be more than 1 PRSCR file?




This is the adding script:

#include "plt_joinable_plot"
#include "wrappers_h"

void main()
{

if (WR_GetPlotFlag(PLT_JOINABLE_PLOT, FEM_TEMP_PLACED) == FALSE)
{
object oDock = GetObjectByTag("cir100ar_docks");
vector vTempLocation = Vector(138.066f, 203.413f, 0.677719f);

CreateObject(
OBJECT_TYPE_CREATURE,
R"fem_temp1.utc",
Location(oDock, vTempLocation, 180.0f)
);

WR_SetPlotFlag(PLT_JOINABLE_PLOT, FEM_TEMP_PLACED, TRUE);
}
}



And the area list name in the PRSCR file is cir100ar_docks.
(cir01al_lake_calenhad)???

Modifié par Lotion Soronnar, 06 juin 2010 - 09:28 .