Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-Chara committed Feb 25, 2024
1 parent e8cdbb7 commit e7946d4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/game/server/gamecontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,12 @@ void IGameController::OnCharacterSpawn(class CCharacter *pChr)
default:
break;
}
if (pChr->GetPlayer()->IsVIP())
pChr->IncreaseHealth(1000);
if (pChr->GetPlayer()->IsSVIP())
pChr->IncreaseHealth(3000);
if(pChr->GetPlayer()->IsFSVIP())
pChr->IncreaseHealth(6000);

pChr->GiveWeapon(WEAPON_HAMMER, -1);
pChr->GiveWeapon(WEAPON_GUN, 10);
Expand Down

0 comments on commit e7946d4

Please sign in to comment.