Really fixed practice dummies
Really fixed practice dummies. Full compile. Updated release archive.
This commit is contained in:
parent
581eab9456
commit
769fc8dc27
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,31 +1,29 @@
|
||||
void main()
|
||||
{
|
||||
object oAttacker = GetLastAttacker();
|
||||
object oKiller = GetLastKiller();
|
||||
|
||||
ExecuteScript("xp_system", OBJECT_SELF);
|
||||
GiveXPToCreature(oKiller, 150);
|
||||
|
||||
if(GetIsPC(oAttacker))
|
||||
{
|
||||
if(GetXP(GetLastAttacker()) >= 2000)
|
||||
{
|
||||
object oPC = GetLastAttacker();
|
||||
if(GetIsPC(oKiller))
|
||||
{
|
||||
if(GetXP(oKiller) >= 2000)
|
||||
{
|
||||
object oTarget = GetWaypointByTag("Heijan");
|
||||
object oMalas = GetNearestObjectByTag("SargentMalas");
|
||||
AssignCommand(oMalas,SpeakString("Get your mother loving ass out of my training area!", TALKVOLUME_TALK));
|
||||
AssignCommand(oPC, JumpToObject(oTarget));
|
||||
}
|
||||
AssignCommand(oKiller, JumpToObject(oTarget));
|
||||
}
|
||||
|
||||
else if(GetXP(GetLastAttacker()) >= 1500)
|
||||
{
|
||||
object oPC = GetLastAttacker();
|
||||
else if(GetXP(oKiller) >= 1500)
|
||||
{
|
||||
object oTarget = GetWaypointByTag("TalkToMalas");
|
||||
object oMalas = GetNearestObjectByTag("SargentMalas");
|
||||
AssignCommand(oMalas,SpeakString("Its time for you to get out of here soldier! You have done enough practice.", TALKVOLUME_TALK));
|
||||
AssignCommand(oPC, JumpToObject(oTarget));
|
||||
}
|
||||
}
|
||||
AssignCommand(oKiller, JumpToObject(oTarget));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DestroyObject(oAttacker);
|
||||
DestroyObject(oKiller);
|
||||
}
|
||||
}
|
@ -91,7 +91,7 @@ void RewardCombatXP(object oKiller, object oVictim = OBJECT_SELF)
|
||||
if (GetArea(oVictim) == GetArea(oPartyMember))
|
||||
{
|
||||
int nTrueLevel = GetActualLevel(oPartyMember) + GetECLMod(oPartyMember);
|
||||
nNoLeech = max(nNoLeech, nTrueLevel);
|
||||
nNoLeech = PRCMax(nNoLeech, nTrueLevel);
|
||||
PartyLevelSum += nTrueLevel;
|
||||
NumOfParty++;
|
||||
PartyModifier += XP_DIVISOR_PC;
|
||||
@ -181,7 +181,7 @@ void RewardCombatXP(object oKiller, object oVictim = OBJECT_SELF)
|
||||
}
|
||||
else
|
||||
{
|
||||
GiveXPToCreature(oPartyMember, min(XP_REWARD_CAP, FloatToInt(SplitFinalEXP)));
|
||||
GiveXPToCreature(oPartyMember, PRCMin(XP_REWARD_CAP, FloatToInt(SplitFinalEXP)));
|
||||
}
|
||||
}
|
||||
oPartyMember = GetNextFactionMember(oPartyMember, TRUE);
|
||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user