Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
/***********************************************************************/ /** © 2015 CD PROJEKT S.A. All rights reserved. /** THE WITCHER® is a trademark of CD PROJEKT S. A. /** The Witcher game is based on the prose of Andrzej Sapkowski. /***********************************************************************/ import struct SSavegameInfo { import var filename : string; import var slotType : ESaveGameType; import var slotIndex : int; }; enum Platform { Platform_PC = 0, Platform_Xbox1 = 1, Platform_PS4 = 2, Platform_Unknown = 3 } struct SPostponedPreAttackEvent { var entity : CGameplayEntity; var eventName : name; var eventType : EAnimationEventType; var data : CPreAttackEventData; var animInfo : SAnimationEventAnimInfo; }; import class CR4Game extends CCommonGame { saved var zoneName : EZoneName; private var gamerProfile : W3GamerProfile; private var isDialogOrCutscenePlaying : bool; private saved var recentDialogOrCutsceneEndGameTime : GameTime; public var isCutscenePlaying : bool; public var isDialogDisplayDisabled : bool; default isDialogDisplayDisabled = false; public var witcherLog : W3GameLog; public var deathSaveLockId : int; private var currentPresence : name; private var restoreUsableItemL : bool; private saved var savedEnchanterFunds : int; private saved var gameplayFactsForRemoval : array<SGameplayFactRemoval>; private saved var gameplayFacts : array<SGameplayFact>; private saved var tutorialManagerHandle : EntityHandle; private saved var diffChangePostponed : EDifficultyMode; private saved var dynamicallySpawnedBoats : array<EntityHandle>; private saved var dynamicallySpawnedBoatsToDestroy : array<EntityHandle>; private saved var uberMovement : bool; default uberMovement = false; function EnableUberMovement( flag : bool ) { uberMovement = flag; } public function IsUberMovementEnabled() : bool { return uberMovement; } default diffChangePostponed = EDM_NotSet; import final function ShowSteamControllerBindingPanel() : bool; import final function ActivateHorseCamera( activate : bool, blendTime : float, optional instantMount : bool ); import final function GetFocusModeController() : CFocusModeController; public var isRespawningInLastCheckpoint : bool; default isRespawningInLastCheckpoint = false; private var environmentID : int; public function SetIsRespawningInLastCheckpoint() { isRespawningInLastCheckpoint = true; } event OnGameSaveListUpdated() { var menuBase : CR4MenuBase; var ingameMenu : CR4IngameMenu; menuBase = (CR4MenuBase)(theGame.GetGuiManager().GetRootMenu()); if (menuBase) { ingameMenu = (CR4IngameMenu)(menuBase.GetSubMenu()); if (ingameMenu) { ingameMenu.HandleSaveListUpdate(); } } } event OnGameLoadInitFinished() { var requiredContent : array< name >; var blockedContentTag : name; var i : int; var progress : float; var loadResult : ELoadGameResult; var ingameMenu : CR4IngameMenu; var menuBase : CR4MenuBase; loadResult = GetLoadGameProgress(); blockedContentTag = 'launch0'; if ( loadResult != LOAD_MissingContent && loadResult != LOAD_Error ) { theSound.SoundEvent("stop_music"); theSound.SoundEvent("gui_global_game_start"); theGame.GetGuiManager().RequestMouseCursor(false); } if ( loadResult == LOAD_NotInitialized || loadResult == LOAD_Initializing || loadResult == LOAD_Loading ) { LogChannel( 'Save', "Event OnGameLoadInitFinished() called, but load not initialized / not ready / already loading. DEBUG THIS!" ); isRespawningInLastCheckpoint = false; return true; } if ( loadResult == LOAD_MissingContent ) { GetContentRequiredByLastSave( requiredContent ); theSound.SoundEvent("gui_global_denied"); for ( i = ( requiredContent.Size() - 1 ); i >= 0; i -= 1 ) { if ( !IsContentAvailable( requiredContent[ i ] ) ) { blockedContentTag = requiredContent[ i ]; break; } } progress = ProgressToContentAvailable( blockedContentTag ); GetGuiManager().ShowProgressDialog( UMID_MissingContentOnLoadError, "", "error_message_new_game_not_ready", true, UDB_Ok, progress, UMPT_Content, blockedContentTag ); isRespawningInLastCheckpoint = false; menuBase = (CR4MenuBase)(theGame.GetGuiManager().GetRootMenu()); if (menuBase) { ingameMenu = (CR4IngameMenu)(menuBase.GetSubMenu()); if (ingameMenu) { ingameMenu.HandleLoadGameFailed(); } } return true; } if ( loadResult == LOAD_Error ) { menuBase = (CR4MenuBase)(theGame.GetGuiManager().GetRootMenu()); theSound.SoundEvent("gui_global_denied"); if (menuBase) { ingameMenu = (CR4IngameMenu)(menuBase.GetSubMenu()); if (ingameMenu) { ingameMenu.HandleLoadGameFailed(); } } } if ( loadResult != LOAD_MissingContent && loadResult != LOAD_Error && isRespawningInLastCheckpoint ) { ReleaseNoSaveLock( deathSaveLockId ); theInput.RestoreContext( 'Exploration', true ); isRespawningInLastCheckpoint = false; } } event OnGameLoadInitFinishedSuccess() { GetGuiManager().GetRootMenu().CloseMenu(); } public function IsFocusModeActive() : bool { var focusModeController : CFocusModeController; focusModeController = GetFocusModeController(); if ( focusModeController ) { return focusModeController.IsActive(); } return false; } var logEnabled : bool; default logEnabled = true; public function EnableLog( enable : bool ) { logEnabled = enable; } public function CanLog() : bool { return logEnabled && !IsFinalBuild(); } import final function GetSurfacePostFX() : CGameplayFXSurfacePost; import final function GetCommonMapManager() : CCommonMapManager; import final function GetJournalManager() : CWitcherJournalManager; import final function GetLootManager() : CR4LootManager; import final function GetInteractionsManager() : CInteractionsManager; import final function GetCityLightManager() : CCityLightManager; import final function GetSecondScreenManager() : CR4SecondScreenManagerScriptProxy; import final function GetGuiManager() : CR4GuiManager; import final function GetGlobalEventsScriptsDispatcher() : CR4GlobalEventsScriptsDispatcher; import final function GetFastForwardSystem() : CGameFastForwardSystem; import final function NotifyOpeningJournalEntry( jorunalEntry : CJournalBase ); var globalEventsScriptsDispatcherInternal : CR4GlobalEventsScriptsDispatcher; public function GetGlobalEventsManager() : CR4GlobalEventsScriptsDispatcher { if ( !globalEventsScriptsDispatcherInternal ) { globalEventsScriptsDispatcherInternal = GetGlobalEventsScriptsDispatcher(); } return globalEventsScriptsDispatcherInternal; } import final function StartSepiaEffect( fadeInTime: float ) : bool; import final function StopSepiaEffect( fadeOutTime: float ) : bool; import final function GetWindAtPoint( point : Vector ) : Vector; import final function GetWindAtPointForVisuals( point : Vector ) : Vector; import final function GetGameCamera() : CCustomCamera; import final function GetBuffImmunitiesForActor( actor : CActor ) : CBuffImmunity; import final function GetMonsterParamsForActor( actor : CActor, out monsterCategory : EMonsterCategory, out soundMonsterName : CName, out isTeleporting : bool, out canBeTargeted : bool, out canBeHitByFists : bool ) : bool; import final function GetMonsterParamForActor( actor : CActor, out val : CMonsterParam ) : bool; import final function GetVolumePathManager() : CVolumePathManager; import final function SummonPlayerHorse( teleportToSafeSpot : bool, createEntityHelper : CR4CreateEntityHelper ); import final function ToggleMenus(); import final function ToggleInput(); import final function GetResourceAliases( out aliases : array< string > ); import final function GetKinectSpeechRecognizer() : CR4KinectSpeechRecognizerListenerScriptProxy; import final function GetTutorialSystem() : CR4TutorialSystem; import final function DisplaySystemHelp(); import final function DisplayStore(); import final function DisplayUserProfileSystemDialog(); import final function SetRichPresence( presence : name ); import final function OnUserDialogCallback( message, action : int ); import final function SaveUserSettings(); //modSigns public final function gmUserSettingsScaling() { var i : int; var all : array<CActor>; all = GetActorsInRange(thePlayer, 10000.f, 10000, '', true); for(i = 0; i < all.Size(); i += 1) { if((CNewNPC)all[i]) ((CNewNPC)all[i]).ResetLevel(); } } //modSigns public final function gmUserSettingsQuestLevels() { LoadQuestLevels( "gameplay\globals\quest_levels.csv" ); if(theGame.GetDLCManager().IsEP1Enabled()) LoadQuestLevels( "dlc\ep1\data\gameplay\globals\quest_levels.csv" ); if(theGame.GetDLCManager().IsEP2Enabled()) LoadQuestLevels( "dlc\bob\data\gameplay\globals\quest_levels.csv" ); } //modSigns public final function gmUserSettingsGameplay() { params.gmResetCachedValuesGameplay(); gmUpdateRegenEffects(); } //modSigns public final function gmUserSettingsQoL() { params.gmResetCachedValuesQoL(); thePlayer.StopLowStaminaSFX(); thePlayer.CheckForLowStamina(); } public final function UpdateRichPresence(presence : name) { SetRichPresence(presence); currentPresence = presence; } public final function ClearRichPresence(presence : name) { var manager: CCommonMapManager; var currentArea : EAreaName; if(currentPresence == presence) { manager = theGame.GetCommonMapManager(); currentArea = manager.GetCurrentJournalArea(); currentPresence = manager.GetLocalisationNameFromAreaType( currentArea ); SetRichPresence(currentPresence); } } import var params : W3GameParams; private var minimapSettings : C2dArray; public var playerStatisticsSettings : C2dArray; public var hudSettings : C2dArray; public var damageMgr : W3DamageManager; public var effectMgr : W3GameEffectManager; private var timescaleSources : array<STimescaleSource>; public saved var envMgr : W3EnvironmentManager; public var runewordMgr : W3RunewordManager; private var questLevelsFilePaths : array<string>; public var questLevelsContainer : array<C2dArray>; public var expGlobalModifiers : C2dArray; public var expGlobalMod_kills : float; public var expGlobalMod_quests : float; private var syncAnimManager : W3SyncAnimationManager; public function GetSyncAnimManager() : W3SyncAnimationManager { if( !syncAnimManager ) { syncAnimManager = new W3SyncAnimationManager in this; } return syncAnimManager; } public function SetEnvironmentID( id : int ) { environmentID = id; } private function SetTimescaleSources() { timescaleSources.Clear(); timescaleSources.Grow( EnumGetMax('ETimescaleSource') + 1 ); timescaleSources[ ETS_PotionBlizzard ].sourceType = ETS_PotionBlizzard; timescaleSources[ ETS_PotionBlizzard ].sourceName = 'PotionBlizzard'; timescaleSources[ ETS_PotionBlizzard ].sourcePriority = 10; timescaleSources[ ETS_SlowMoTask ].sourceType = ETS_SlowMoTask; timescaleSources[ ETS_SlowMoTask ].sourceName = 'SlowMotionTask'; timescaleSources[ ETS_SlowMoTask ].sourcePriority = 15; timescaleSources[ ETS_HeavyAttack ].sourceType = ETS_HeavyAttack; timescaleSources[ ETS_HeavyAttack ].sourceName = 'HeavyAttack'; timescaleSources[ ETS_HeavyAttack ].sourcePriority = 15; timescaleSources[ ETS_ThrowingAim ].sourceType = ETS_ThrowingAim; timescaleSources[ ETS_ThrowingAim ].sourceName = 'ThrowingAim'; timescaleSources[ ETS_ThrowingAim ].sourcePriority = 15; timescaleSources[ ETS_RaceSlowMo ].sourceType = ETS_RaceSlowMo; timescaleSources[ ETS_RaceSlowMo ].sourceName = 'RaceSlowMo'; timescaleSources[ ETS_RaceSlowMo ].sourcePriority = 10; timescaleSources[ ETS_RadialMenu ].sourceType = ETS_RadialMenu; timescaleSources[ ETS_RadialMenu ].sourceName = 'RadialMenu'; timescaleSources[ ETS_RadialMenu ].sourcePriority = 20; timescaleSources[ ETS_CFM_PlayAnim ].sourceType = ETS_CFM_PlayAnim; timescaleSources[ ETS_CFM_PlayAnim ].sourceName = 'CFM_PlayAnim'; timescaleSources[ ETS_CFM_PlayAnim ].sourcePriority = 25; timescaleSources[ ETS_CFM_On ].sourceType = ETS_CFM_On; timescaleSources[ ETS_CFM_On ].sourceName = 'CFM_On'; timescaleSources[ ETS_CFM_On ].sourcePriority = 20; timescaleSources[ ETS_DebugInput ].sourceType = ETS_DebugInput; timescaleSources[ ETS_DebugInput ].sourceName = 'debug_input'; timescaleSources[ ETS_DebugInput ].sourcePriority = 30; timescaleSources[ ETS_SkillFrenzy ].sourceType = ETS_SkillFrenzy; timescaleSources[ ETS_SkillFrenzy ].sourceName = 'skill_frenzy'; timescaleSources[ ETS_SkillFrenzy ].sourcePriority = 15; timescaleSources[ ETS_HorseMelee ].sourceType = ETS_HorseMelee; timescaleSources[ ETS_HorseMelee ].sourceName = 'horse_melee'; timescaleSources[ ETS_HorseMelee ].sourcePriority = 15; timescaleSources[ ETS_FinisherInput ].sourceType = ETS_FinisherInput; timescaleSources[ ETS_FinisherInput ].sourceName = 'finisher_input'; timescaleSources[ ETS_FinisherInput ].sourcePriority = 15; timescaleSources[ ETS_TutorialFight ].sourceType = ETS_TutorialFight; timescaleSources[ ETS_TutorialFight ].sourceName = 'tutorial_fight'; timescaleSources[ ETS_TutorialFight ].sourcePriority = 25; timescaleSources[ ETS_InstantKill ].sourceType = ETS_InstantKill; timescaleSources[ ETS_InstantKill ].sourceName = 'instant_kill'; timescaleSources[ ETS_InstantKill ].sourcePriority = 5; } public function GetTimescaleSource(src : ETimescaleSource) : name { return timescaleSources[src].sourceName; } public function GetTimescalePriority(src : ETimescaleSource) : int { return timescaleSources[src].sourcePriority; } private function UpdateSecondScreen() { var areaMapPins : array< SAreaMapPinInfo >; var areaMapPinsCount : int; var index_areas : int; var worldPath : string; var localMapPins : array< SCommonMapPinInstance >; var globalMapPins : array< SCommonMapPinInstance >; var mapPin : SCommonMapPinInstance; areaMapPins = GetCommonMapManager().GetAreaMapPins(); areaMapPinsCount = areaMapPins.Size(); for ( index_areas = 0; index_areas < areaMapPinsCount; index_areas += 1 ) { mapPin.id = areaMapPins[ index_areas ].areaType; mapPin.tag = '0'; mapPin.type = 'WorldMap'; mapPin.position = areaMapPins[ index_areas ].position; mapPin.isDiscovered = true; globalMapPins.PushBack( mapPin ); localMapPins = GetCommonMapManager().GetMapPinInstances( areaMapPins[ index_areas ].worldPath ); GetSecondScreenManager().SendAreaMapPins( areaMapPins[ index_areas ].areaType, localMapPins ); } GetSecondScreenManager().SendGlobalMapPins( globalMapPins ); } import final function GetPlatform():int; private var isSignedIn:bool; default isSignedIn = false; public function isUserSignedIn():bool { if (GetPlatform() == Platform_PC) { return true; } else { return isSignedIn; } } event OnUserSignedIn() { isSignedIn = true; GetGuiManager().OnSignIn(); } event OnUserSignedOut() { isSignedIn = false; GetGuiManager().OnSignOut(); } event OnSignInStarted() { GetGuiManager().OnSignInStarted(); } event OnSignInCancelled() { GetGuiManager().OnSignInCancelled(); } import final function SetActiveUserPromiscuous(); import final function ChangeActiveUser(); import final function GetActiveUserDisplayName() : string; import final function IsContentAvailable( content : name ) : bool; import final function ProgressToContentAvailable( content : name ) : int; import final function ShouldForceInstallVideo() : bool; import final function IsDebugQuestMenuEnabled() : bool; import final function EnableNewGamePlus( enable : bool ); import final function StartNewGamePlus( save : SSavegameInfo ) : ENewGamePlusStatus; public function OnConfigValueChanged( varName : name, value : string ) : void { var kinect : CR4KinectSpeechRecognizerListenerScriptProxy; kinect = GetKinectSpeechRecognizer(); if ( varName == 'Kinect' ) { if ( value == "true" ) kinect.SetEnabled( true ); else kinect.SetEnabled( false ); } } public function LoadQuestLevels( filePath: string ) : void { var index : int; //modSigns: no quest levels option if( theGame.params.GetNoQuestLevels() ) { questLevelsFilePaths.Clear(); questLevelsContainer.Clear(); return; } index = questLevelsFilePaths.FindFirst( filePath ); if( index == -1 ) { questLevelsFilePaths.PushBack( filePath ); questLevelsContainer.PushBack( LoadCSV( filePath ) ); } } public function UnloadQuestLevels( filePath: string ) : void { var index : int; index = questLevelsFilePaths.FindFirst( filePath ); if( index != -1 ) { questLevelsFilePaths.Erase( index ); questLevelsContainer.Erase( index ); } } event OnGameStarting(restored : bool ) { var diff : int; if(!restored) { gameplayFacts.Clear(); gameplayFactsForRemoval.Clear(); } if (!FactsDoesExist("lowest_difficulty_used") || GetLowestDifficultyUsed() == EDM_NotSet) { SetLowestDifficultyUsed(GetDifficultyLevel()); } SetHoursPerMinute(0.25); SetTimescaleSources(); isDialogOrCutscenePlaying = false; params.Init(); witcherLog = new W3GameLog in this; InitGamerProfile(); damageMgr = new W3DamageManager in this; tooltipSettings = LoadCSV("gameplay\globals\tooltip_settings.csv"); minimapSettings = LoadCSV("gameplay\globals\minimap_settings.csv"); LoadHudSettings(); playerStatisticsSettings = LoadCSV("gameplay\globals\player_statistics_settings.csv"); LoadQuestLevels( "gameplay\globals\quest_levels.csv" ); expGlobalModifiers = LoadCSV("gameplay\globals\exp_mods.csv"); expGlobalMod_kills = StringToFloat( expGlobalModifiers.GetValueAt(0,0) ); expGlobalMod_quests = StringToFloat( expGlobalModifiers.GetValueAt(1,0) ); InitializeEffectManager(); envMgr = new W3EnvironmentManager in this; envMgr.Initialize(); runewordMgr = new W3RunewordManager in this; runewordMgr.Init(); theGame.RequestPopup( 'OverlayPopup' ); theSound.Initialize(); if(IsLoadingScreenVideoPlaying()) { theSound.EnterGameState(ESGS_Movie); } } private function InitGamerProfile() { gamerProfile = new W3GamerProfile in this; gamerProfile.Init(); } public function GetGamerProfile() : W3GamerProfile { if(!gamerProfile) InitGamerProfile(); return gamerProfile; } public function OnTick() { if(envMgr) envMgr.Update(); if(diffChangePostponed != EDM_NotSet && thePlayer) { OnDifficultyChanged(diffChangePostponed); diffChangePostponed = EDM_NotSet; } FirePostponedPreAttackEvents(); } event OnGameStarted(restored : bool) { var focusModeController : CFocusModeController; focusModeController = GetFocusModeController(); if( !restored ) { if(FactsQuerySum("started_new_game") <= 0) { thePlayer.displayedQuestsGUID.Clear(); dynamicallySpawnedBoats.Clear(); FactsAdd("started_new_game", 1); } } if ( FactsQuerySum( "q704_long_night_starts" ) == 0 ) { GetWorld().HideLayerGroup( "quests\main_quests\q704_the_truth\q704_vampires\custom_land_borders" ); } if ( focusModeController ) { focusModeController.OnGameStarted(); } GetCommonMapManager().OnGameStarted(); ClearRichPresence(currentPresence); theSound.InitializeAreaMusic( GetCommonMapManager().GetCurrentArea() ); UpdateSecondScreen(); if( thePlayer && thePlayer.teleportedOnBoatToOtherHUB ) { thePlayer.SetTeleportedOnBoatToOtherHUB( false ); thePlayer.AddTimer( 'DelayedSpawnAndMountBoat', 0.001f, false ); } } event OnHandleWorldChange() { thePlayer.SetTeleportedOnBoatToOtherHUB( true ); } event OnBeforeWorldChange( worldName : string ) { var manager : CCommonMapManager = theGame.GetCommonMapManager(); if ( manager ) { manager.CacheMapPins(); manager.ForceSettingLoadingScreenVideoForWorld( worldName ); } thePlayer.SetUsedVehicle( NULL ); } event OnAfterLoadingScreenGameStart() { var tut : STutorialMessage; theSound.LeaveGameState(ESGS_Movie); theSound.SoundEvent("system_resume"); if(ShouldProcessTutorial('TutorialStash') && FactsQuerySum("tut_stash_fresh_playthrough") <= 0) { tut.type = ETMT_Message; tut.tutorialScriptTag = 'TutorialStash'; tut.canBeShownInMenus = false; tut.glossaryLink = false; tut.markAsSeenOnShow = true; theGame.GetTutorialSystem().DisplayTutorial(tut); } } event OnSaveStarted( type : ESaveGameType ) { LogChannel( 'Savegame', "OnSaveStarted " + type ); } event OnSaveCompleted( type : ESaveGameType, succeeded : bool ) { var hud : CR4ScriptedHud; var text : string; LogChannel( 'Savegame', "OnSaveCompleted " + type + " " + succeeded ); if ( succeeded ) { theGame.GetGuiManager().ShowSavingIndicator(); theGame.GetGuiManager().HideSavingIndicator(); if (theGame.GetPlatform() == Platform_Xbox1) { text = "panel_hud_message_gamesaved_X1"; } else if (theGame.GetPlatform() == Platform_PS4) { text = "panel_hud_message_gamesaved_PS4"; } else { text = "panel_hud_message_gamesaved"; } if ( type == SGT_AutoSave || type == SGT_CheckPoint || type == SGT_ForcedCheckPoint ) { hud = ( CR4ScriptedHud )GetHud(); if ( hud ) { hud.HudConsoleMsg( GetLocStringByKeyExt(text) ); } } else { thePlayer.DisplayHudMessage( text ); } } else if ( type == SGT_QuickSave || type == SGT_Manual ) { if (theGame.GetPlatform() == Platform_Xbox1) { text = "panel_hud_message_gamesavedfailed_X1"; } else if (theGame.GetPlatform() == Platform_PS4) { text = "panel_hud_message_gamesavedfailed_PS4"; } else { text = "panel_hud_message_gamesavedfailed"; } theGame.GetGuiManager().ShowUserDialog(0, "", text, UDB_Ok); } } event OnControllerReconnected() { if(!theGame.IsBlackscreen() && theGame.IsActive()) { if(theGame.GetGuiManager().IsAnyMenu()) { theSound.SoundEvent("system_resume_music_only"); } else { theSound.SoundEvent("system_resume"); } } GetGuiManager().OnControllerReconnected(); } event OnControllerDisconnected() { if(!theGame.IsBlackscreen() && theGame.IsActive() && !theGame.GetGuiManager().IsAnyMenu()) { theSound.SoundEvent("system_pause"); } GetGuiManager().OnControllerDisconnected(); } //modSigns: reworked event OnGiveReward( target : CEntity, rewardName : name, rewrd : SReward ) { var i : int; var itemCount : int; var gameplayEntity : CGameplayEntity; var inv : CInventoryComponent; var goldMultiplier : float; var itemMultiplier : float; var itemsCount : int; var ids : array<SItemUniqueId>; var itemCategory : name; var moneyWon : int; var rewardMultData : SRewardMultiplier; var lvlDiff : int; var playerLevel, rewardLevel: int; var expModifier : float; var expPoints : int; if ( target == thePlayer ) { // exp if ( rewrd.experience > 0 && GetWitcherPlayer()) { expModifier = 1.f; //start with 100% exp playerLevel = thePlayer.GetLevel(); if(FactsQuerySum("NewGamePlus") > 0) //reward levels are set for base game playerLevel -= params.GetNewGamePlusLevel(); //decrease player level for NG+ if(theGame.params.GetNoQuestLevels()) //no quest levels option rewardLevel = 0; else rewardLevel = rewrd.level; if(theGame.params.GetFixedExp() == false && rewardLevel > 0) //default exp option { lvlDiff = rewardLevel - playerLevel; //level difference: negative for low level quests, positive for hight level quests //lower lever quests give increasingly less exp and higher level quests give more expModifier += lvlDiff * theGame.params.LEVEL_DIFF_XP_MOD; //0% min, 150% max expModifier = ClampF(expModifier, 0, theGame.params.MAX_XP_MOD); } //calculate exp expPoints = RoundMath(rewrd.experience * expGlobalMod_quests * expModifier); //always get at least 5 exp expPoints = Max(5, expPoints); //final exp modifier if( theGame.params.GetQuestExpModifier() != 0 ) expPoints = RoundMath(expPoints * (1 + theGame.params.GetQuestExpModifier())); GetWitcherPlayer().AddPoints(EExperiencePoint, expPoints, true); if ( rewrd.achievement > 0 ) { theGame.GetGamerProfile().AddAchievement( rewrd.achievement ); } } gameplayEntity = (CGameplayEntity)target; if ( gameplayEntity ) { inv = gameplayEntity.GetInventory(); if ( inv ) { rewardMultData = thePlayer.GetRewardMultiplierData( rewardName ); //modSigns: debug //theGame.witcherLog.AddMessage("rewardName = " + rewardMultData.rewardName); if( rewardMultData.isItemMultiplier ) { goldMultiplier = 1.0; itemMultiplier = rewardMultData.rewardMultiplier; //modSigns: debug //theGame.witcherLog.AddMessage("itemMultiplier = " + rewardMultData.rewardMultiplier); } else { goldMultiplier = rewardMultData.rewardMultiplier; itemMultiplier = 1.0; //modSigns: debug //theGame.witcherLog.AddMessage("goldMultiplier = " + rewardMultData.rewardMultiplier); } if ( rewrd.gold > 0 ) { inv.AddMoney( (int)(rewrd.gold * goldMultiplier) ); thePlayer.RemoveRewardMultiplier(rewardName); if( target == thePlayer ) { moneyWon = (int)(rewrd.gold * goldMultiplier); if ( moneyWon > 0 ) thePlayer.DisplayItemRewardNotification('Crowns', moneyWon ); } } for ( i = 0; i < rewrd.items.Size(); i += 1 ) { itemsCount = RoundF( rewrd.items[ i ].amount * itemMultiplier ); if( itemsCount > 0 ) { ids = inv.AddAnItem( rewrd.items[ i ].item, itemsCount ); for ( itemCount = 0; itemCount < ids.Size(); itemCount += 1 ) { if ( inv.ItemHasTag( ids[i], 'Autogen' ) && GetWitcherPlayer().GetLevel() - 1 > 1 ) { inv.GenerateItemLevel( ids[i], true ); } } itemCategory = inv.GetItemCategory( ids[0] ); if ( itemCategory == 'alchemy_recipe' || itemCategory == 'crafting_schematic' ) { inv.ReadSchematicsAndRecipes( ids[0] ); } if(target == thePlayer) { if( !inv.ItemHasTag( ids[0], 'GwintCard') ) { thePlayer.DisplayItemRewardNotification(rewrd.items[ i ].item, RoundF( rewrd.items[ i ].amount * itemMultiplier ) ); } } } } } } } public function IsEffectManagerInitialized() : bool { if(!effectMgr) return false; return effectMgr.IsReady(); } public function InitializeEffectManager() { effectMgr = new W3GameEffectManager in this; effectMgr.Initialize(); } public function GetLowestDifficultyUsed() : EDifficultyMode { return FactsQuerySum("lowest_difficulty_used"); } public function SetLowestDifficultyUsed(d : EDifficultyMode) { FactsSet("lowest_difficulty_used", (int)d); } event OnGameEnded() { var focusModeController : CFocusModeController; if ( runewordMgr ) { delete runewordMgr; runewordMgr = NULL; } focusModeController = GetFocusModeController(); if ( focusModeController ) { focusModeController.OnGameEnded(); } DeactivateEnvironment( environmentID, 0 ); if(effectMgr) { delete effectMgr; effectMgr = NULL; } if(envMgr) { delete envMgr; envMgr = NULL; } if( syncAnimManager ) { delete syncAnimManager; syncAnimManager = NULL; } RemoveTimeScale( GetTimescaleSource(ETS_RadialMenu) ); theSound.Finalize(); LogChannel( 'HUD', "GUI Closed" ); } public var m_runReactionSceneDialog : bool; public function SetRunReactionSceneDialog( val : bool ){ m_runReactionSceneDialog = val; } public function SetIsDialogOrCutscenePlaying(b : bool) { var witcher : W3PlayerWitcher; var activePoster : W3Poster; var hud : CR4ScriptedHud; var radialModule : CR4HudModuleRadialMenu; var lootPopup : CR4LootPopup; var bolts : SItemUniqueId; isDialogOrCutscenePlaying = b; recentDialogOrCutsceneEndGameTime = GetGameTime(); if ( b) { hud = (CR4ScriptedHud)GetHud(); if( hud ) { radialModule = (CR4HudModuleRadialMenu)hud.GetHudModule("RadialMenuModule"); if (radialModule && radialModule.IsRadialMenuOpened()) { radialModule.HideRadialMenu(); } } lootPopup = (CR4LootPopup)GetGuiManager().GetPopup('LootPopup'); if (lootPopup) { lootPopup.ClosePopup(); } } if(theGame.GetTutorialSystem() && theGame.GetTutorialSystem().IsRunning()) { theGame.GetTutorialSystem().OnCutsceneOrDialogChange(b); if(b) { FactsAdd("tut_dialog_started", 1, CeilF(ConvertRealTimeSecondsToGameSeconds(1))); } } witcher = GetWitcherPlayer(); if(b && witcher && witcher.IsAnyQuenActive()) { witcher.FinishQuen( true, true ); } activePoster = thePlayer.GetActivePoster (); if ( activePoster ) { CloseMenu('PosterMenu'); activePoster.OnEndedObservingPoster(); } if ( b && thePlayer.IsHoldingItemInLHand ()) { thePlayer.HideUsableItem( true ); restoreUsableItemL = true; } if ( !b && restoreUsableItemL ) { restoreUsableItemL = false; if ( !thePlayer.IsInCombat() ) { thePlayer.OnUseSelectedItem(); } } if(!b && witcher) { if(!witcher.GetItemEquippedOnSlot(EES_Bolt, bolts) || witcher.inv.ItemHasTag(bolts, theGame.params.TAG_INFINITE_AMMO)) witcher.AddAndEquipInfiniteBolt(); } } public final function IsDialogOrCutscenePlaying() : bool { return isDialogOrCutscenePlaying; } public final function GetRecentDialogOrCutsceneEndGameTime() : GameTime { return recentDialogOrCutsceneEndGameTime; } public final function GetSavedEnchanterFunds() : int { return savedEnchanterFunds; } public final function SetSavedEnchanterFunds( value : int ) { savedEnchanterFunds = value; } public function SetIsCutscenePlaying(b : bool) { isCutscenePlaying = b; } public function PopulateMenuQueueStartupOnce( out menus : array< name > ) { menus.PushBack( 'StartupMoviesMenu' ); } public function PopulateMenuQueueStartupAlways( out menus : array< name > ) { var menuType : int; menuType = ChooseRandomMainMenuIfNotChosenYet(); if (GetPlatform() != Platform_PC) { switch ( menuType ) { case 1: menus.PushBack( 'StartScreenMenuEP1' ); break; case 2: menus.PushBack( 'StartScreenMenuEP2' ); break; case 0: default: menus.PushBack( 'StartScreenMenu' ); break; } } } public function PopulateMenuQueueConfig( out menus : array< name > ) { var inGameConfigWrapper : CInGameConfigWrapper; inGameConfigWrapper = (CInGameConfigWrapper)theGame.GetInGameConfigWrapper(); if( GetPlatform() != Platform_PC ) { menus.PushBack( 'RescaleMenu' ); menus.PushBack( 'MainGammaMenu' ); } } public function PopulateMenuQueueMainOnce( out menus : array< name > ) { if (GetPlatform() != Platform_PC) { menus.PushBack( 'AutosaveWarningMenu' ); } menus.PushBack( 'RecapMoviesMenu' ); } public function PopulateMenuQueueMainAlways( out menus : array< name > ) { var menuType : int; menuType = ChooseRandomMainMenuIfNotChosenYet(); switch ( menuType ) { case 1: menus.PushBack( 'CommonMainMenuEP1' ); break; case 2: menus.PushBack( 'CommonMainMenuEP2' ); break; case 0: default: menus.PushBack( 'CommonMainMenu' ); break; } } private var _mainMenuType : int; default _mainMenuType = -1; public function GetChosenMainMenuType() : int { return _mainMenuType; } private function ChooseRandomMainMenuIfNotChosenYet() : int { var availableMainMenuTypes : array< int >; var seed : int; var index : int; if ( _mainMenuType > -1 ) { return _mainMenuType; } availableMainMenuTypes.PushBack( 0 ); if (theGame.GetDLCManager().IsEP1Available()) { availableMainMenuTypes.PushBack( 1 ); } if (theGame.GetDLCManager().IsEP2Available()) { availableMainMenuTypes.PushBack( 2 ); } seed = CalcSeed( theGame ); index = (int)RandNoiseF( seed, availableMainMenuTypes.Size() ); _mainMenuType = availableMainMenuTypes[ index ]; LogChannel('asd', "RAND " + seed + " " + index + " " + _mainMenuType ); return _mainMenuType; return _mainMenuType; } public function GetNewGameDefinitionFilename() : string { return "game/witcher3.redgame"; } public function GetCurrentZone() : EZoneName { return zoneName; } public function SetCurrentZone( tag : name ) { zoneName = ZoneNameToType( tag ); } private var uiHorizontalFrameScale : float; default uiHorizontalFrameScale = 1.0; private var uiVerticalFrameScale : float; default uiVerticalFrameScale = 1.0; private var uiScale : float; default uiScale = 1.0; private var uiGamepadScaleGain : float; default uiGamepadScaleGain = 0.0; private var uiOpacity : float; default uiOpacity = 0.8; protected var isColorBlindMode:bool; public function getColorBlindMode():bool { return isColorBlindMode; } public function setColorBlindMode(value:bool) { isColorBlindMode = value; } private var menuToOpen : name; public function GetMenuToOpen() : name { return menuToOpen; } public function SetMenuToOpen( menu : name ) { menuToOpen = menu; } public function RequestMenuWithBackground( menu : name, backgroundMenu : name, optional initData : IScriptable ) { var commonMenu : CR4CommonMenu; var guiManager : CR4GuiManager; guiManager = GetGuiManager(); commonMenu = (CR4CommonMenu)guiManager.GetRootMenu(); if( commonMenu ) { commonMenu.SwitchToSubMenu(menu,""); } else { if ( guiManager.IsAnyMenu() ) { guiManager.GetRootMenu().CloseMenu(); } SetMenuToOpen( menu ); theGame.RequestMenu( backgroundMenu, initData ); } } public function OpenPopup(DataObject : W3PopupData) : void { theGame.RequestMenu('PopupMenu', DataObject); } public function SetUIVerticalFrameScale( value : float ) { uiVerticalFrameScale = value; } public function GetUIVerticalFrameScale() : float { return uiVerticalFrameScale; } public function SetUIHorizontalFrameScale( value : float ) { var horizontalPlusFrameScale : float; uiHorizontalFrameScale = value; horizontalPlusFrameScale = theGame.GetUIHorizontalPlusFrameScale(); uiHorizontalFrameScale = uiHorizontalFrameScale * horizontalPlusFrameScale; } public function GetUIHorizontalFrameScale() : float { return uiHorizontalFrameScale; } public function SetUIScale( value : float ) { uiScale = value; } public function GetUIScale() : float { return uiScale; } public function SetUIGamepadScaleGain( value : float ) { uiGamepadScaleGain = value; } public function GetUIGamepadScaleGain() : float { return uiGamepadScaleGain; } public function SetDeathSaveLockId(i : int) { deathSaveLockId = i; } public function SetUIOpacity( value : float ) { uiOpacity = value; } public function GetUIOpacity() : float { return uiOpacity; } public function setDialogDisplayDisabled( value : bool ) { isDialogDisplayDisabled = value; } public function LoadHudSettings() { var inGameConfigWrapper : CInGameConfigWrapper; hudSettings = LoadCSV("gameplay\globals\hud_settings.csv"); inGameConfigWrapper = (CInGameConfigWrapper)theGame.GetInGameConfigWrapper(); isDialogDisplayDisabled = inGameConfigWrapper.GetVarValue('Localization', 'Subtitles') == "false"; SetUIVerticalFrameScale( StringToFloat(inGameConfigWrapper.GetVarValue('Hidden', 'uiVerticalFrameScale')) ); SetUIHorizontalFrameScale( StringToFloat(inGameConfigWrapper.GetVarValue('Hidden', 'uiHorizontalFrameScale')) ); uiScale = StringToFloat(theGame.hudSettings.GetValueAt(1,theGame.hudSettings.GetRowIndexAt( 0, "uiScale" ))); uiOpacity = StringToFloat(theGame.hudSettings.GetValueAt(1,theGame.hudSettings.GetRowIndexAt( 0, "uiOpacity" ))); } event OnRefreshUIScaling() { var inGameConfigWrapper : CInGameConfigWrapper; inGameConfigWrapper = (CInGameConfigWrapper)theGame.GetInGameConfigWrapper(); SetUIVerticalFrameScale( StringToFloat(inGameConfigWrapper.GetVarValue('Hidden', 'uiVerticalFrameScale')) ); SetUIHorizontalFrameScale( StringToFloat(inGameConfigWrapper.GetVarValue('Hidden', 'uiHorizontalFrameScale')) ); } event OnSpawnPlayerHorse( ) { var createEntityHelper : CR4CreateEntityHelper; thePlayer.RaiseEvent('HorseSummon'); if( !thePlayer.GetHorseWithInventory() || !thePlayer.GetHorseWithInventory().IsAlive() || ( !thePlayer.WasVisibleInScaledFrame( thePlayer.GetHorseWithInventory(), 1.5f, 1.5f ) && VecDistanceSquared( thePlayer.GetWorldPosition(), thePlayer.GetHorseWithInventory().GetWorldPosition() ) > 900 ) || VecDistanceSquared( thePlayer.GetWorldPosition(), thePlayer.GetHorseWithInventory().GetWorldPosition() ) > 1600 ) { createEntityHelper = new CR4CreateEntityHelper in this; createEntityHelper.SetPostAttachedCallback( this, 'OnPlayerHorseSummoned' ); theGame.SummonPlayerHorse( true, createEntityHelper ); } else { thePlayer.GetHorseWithInventory().SignalGameplayEventParamObject( 'HorseSummon', thePlayer ); } thePlayer.OnSpawnHorse(); } private function OnPlayerHorseSummoned( horseEntity : CEntity ) { var saddle : SItemUniqueId; var horseManager : W3HorseManager; var horse : CActor; horseManager = GetWitcherPlayer().GetHorseManager(); saddle = horseManager.GetItemInSlot(EES_HorseSaddle); if ( horseManager.GetInventoryComponent().GetItemName(saddle) == 'Devil Saddle' ) { horse = (CActor)horseEntity; horse.AddEffectDefault(EET_WeakeningAura, horse, 'horse saddle', false); } thePlayer.GetHorseWithInventory().SignalGameplayEventParamObject( 'HorseSummon', thePlayer ); GetWitcherPlayer().GetHorseManager().ApplyHorseUpdateOnSpawn(); } event OnTutorialMessageForChoiceLines( flags : int ) { GameplayFactsSet('dialog_choice_flags', flags); GameplayFactsAdd('dialog_choice_is_set', 1, 1); } event OnTutorialMessageForChoiceLineChosen( flags : int ) { GameplayFactsSet('dialog_used_choice_flags', flags); GameplayFactsAdd('dialog_used_choice_is_set', 1, 1); } public function GameplayFactsAdd(factName : string, optional value : int, optional realtimeSecsValidFor : int) { var idx : int; var newFact : SGameplayFact; var newFactRemoval : SGameplayFactRemoval; if(value < 0) return; else if(value == 0) value = 1; idx = GetGameplayFactIndex(factName); if(idx >= 0) { gameplayFacts[idx].value += value; } else { newFact.factName = factName; newFact.value = value; gameplayFacts.PushBack(newFact); } if(realtimeSecsValidFor > 0) { newFactRemoval.factName = factName; newFactRemoval.value = value; newFactRemoval.timerID = thePlayer.AddTimer('GameplayFactRemove', realtimeSecsValidFor, , , , true, false); gameplayFactsForRemoval.PushBack(newFactRemoval); } } public function GameplayFactsSet(factName : string, value : int) { var idx : int; var newFact : SGameplayFact; idx = GetGameplayFactIndex(factName); if(idx >= 0) { gameplayFacts[idx].value = value; } else { newFact.factName = factName; newFact.value = value; gameplayFacts.PushBack(newFact); } } public function GameplayFactsRemove(factName : string) { var i : int; for(i=0; i<gameplayFacts.Size(); i+=1) { if(gameplayFacts[i].factName == factName) { gameplayFacts.EraseFast(i); return; } } } public function GameplayFactRemoveFromTimer(timerID : int) { var idx, factIdx : int; idx = GetGameplayFactsForRemovalIndex(timerID); if(idx < 0) { LogAssert(false, "CR4Game.GameplayFactRemoveFromTimer: trying to process non-existant timer <<" + timerID + ">>"); return; } factIdx = GetGameplayFactIndex(gameplayFactsForRemoval[idx].factName); if(factIdx < 0) return; gameplayFacts[factIdx].value -= gameplayFactsForRemoval[idx].value; if(gameplayFacts[factIdx].value <= 0) gameplayFacts.EraseFast(factIdx); gameplayFactsForRemoval.EraseFast(idx); } public function GameplayFactsQuerySum(factName : string) : int { var idx : int; idx = GetGameplayFactIndex(factName); if(idx >= 0) return gameplayFacts[idx].value; return 0; } private function GetGameplayFactIndex(factName : string) : int { var i : int; for(i=0; i<gameplayFacts.Size(); i+=1) { if(gameplayFacts[i].factName == factName) return i; } return -1; } private function GetGameplayFactsForRemovalIndex(timerID : int) : int { var i : int; for(i=0; i<gameplayFactsForRemoval.Size(); i+=1) { if(gameplayFactsForRemoval[i].timerID == timerID) return i; } return -1; } public function GetR4ReactionManager() : CR4ReactionManager { return ( CR4ReactionManager ) GetBehTreeReactionManager(); } public function GetDifficultyMode() : EDifficultyMode { var diff : EDifficultyMode; diff = GetDifficultyLevel(); if(diff == EDM_NotSet) { return EDM_Medium; } return diff; } event OnDifficultyChanged(newDifficulty : int) { var i : int; var lowestDiff : EDifficultyMode; if(!thePlayer) { diffChangePostponed = newDifficulty; return false; } theTelemetry.SetCommonStatI32(CS_DIFFICULTY_LVL, newDifficulty); lowestDiff = GetLowestDifficultyUsed(); if(lowestDiff != newDifficulty && MinDiffMode(lowestDiff, newDifficulty) == newDifficulty) SetLowestDifficultyUsed(newDifficulty); UpdateStatsForDifficultyLevel( GetSpawnDifficultyMode() ); } public function OnPlayerChanged() { var i : int; var buffs : array<CBaseGameplayEffect>; var witcher : W3PlayerWitcher; thePlayer.RemoveAllNonAutoBuffs( , true ); buffs = thePlayer.GetBuffs(); for(i=0; i<buffs.Size(); i+=1) { buffs[i].ResumeForced(); } GetGameCamera().StopEffect( 'frost' ); DisableCatViewFx( 1.0f ); thePlayer.StopEffect('critical_low_health'); DisableDrunkFx(); thePlayer.StopEffect('critical_toxicity'); if(GetWitcherPlayer()) GetWitcherPlayer().UpdateEncumbrance(); UpdateStatsForDifficultyLevel( GetSpawnDifficultyMode() ); RemoveAllTimeScales(); } public function GetSpawnDifficultyMode() : EDifficultyMode { //if( thePlayer && thePlayer.IsCiri() ) //{ // return MinDiffMode( GetDifficultyMode(), EDM_Medium ); //} return GetDifficultyMode(); } public function UpdateStatsForDifficultyLevel( difficulty : EDifficultyMode ) { var i : int; var actor : CActor; var npcs : array< CNewNPC >; GetAllNPCs( npcs ); for( i=0; i < npcs.Size(); i+=1 ) { actor = (CActor)npcs[i]; if( actor ) { actor.UpdateStatsForDifficultyLevel( difficulty ); } } } public function CanTrackQuest( questEntry : CJournalQuest ) : bool { var questName : string; var baseName : string; var i : int; var questCount : int; var playerLevel : int; var questLevel : int; var questLevels : C2dArray; var questLevelsCount : int; var iterQuestLevels : int; baseName = questEntry.baseName; playerLevel = thePlayer.GetLevel(); if ( questEntry.GetType() == MonsterHunt ) { questLevelsCount = theGame.questLevelsContainer.Size(); for( iterQuestLevels = 0; iterQuestLevels < questLevelsCount; iterQuestLevels += 1 ) { questLevels = theGame.questLevelsContainer[iterQuestLevels]; questCount = questLevels.GetNumRows(); for( i = 0; i < questCount; i += 1 ) { questName = questLevels.GetValueAtAsName( 0, i ); if ( questName == baseName ) { questLevel = NameToInt( questLevels.GetValueAtAsName( 1, i ) ); return playerLevel >= questLevel - 5; } } } } return true; } import final function GetGwintManager() : CR4GwintManager; public function IsBlackscreenOrFading() : bool { return IsBlackscreen() || IsFading(); } var postponedPreAttackEvents : array< SPostponedPreAttackEvent >; event OnPreAttackEvent( entity : CGameplayEntity, animEventName : name, animEventType : EAnimationEventType, data : CPreAttackEventData, animInfo : SAnimationEventAnimInfo ) { var postponedPreAttackEvent : SPostponedPreAttackEvent; postponedPreAttackEvent.entity = entity; postponedPreAttackEvent.eventName = animEventName; postponedPreAttackEvent.eventType = animEventType; postponedPreAttackEvent.data = data; postponedPreAttackEvent.animInfo = animInfo; postponedPreAttackEvents.PushBack( postponedPreAttackEvent ); } function FirePostponedPreAttackEvents() { var i, size : int; var entity : CGameplayEntity; size = postponedPreAttackEvents.Size(); for ( i = 0; i < size; i+=1 ) { entity = postponedPreAttackEvents[i].entity; if ( entity ) { entity.OnPreAttackEvent( postponedPreAttackEvents[i].eventName, postponedPreAttackEvents[i].eventType, postponedPreAttackEvents[i].data, postponedPreAttackEvents[i].animInfo ); } } postponedPreAttackEvents.Clear(); } public final function AddDynamicallySpawnedBoatHandle(handle : EntityHandle) { var i : int; if(EntityHandleGet(handle)) { dynamicallySpawnedBoats.PushBack(handle); if(dynamicallySpawnedBoats.Size() >= theGame.params.MAX_DYNAMICALLY_SPAWNED_BOATS) { for(i=dynamicallySpawnedBoatsToDestroy.Size()-1; i>=0; i-=1) { if(!EntityHandleGet(dynamicallySpawnedBoats[i])) dynamicallySpawnedBoats.EraseFast(i); } if(dynamicallySpawnedBoats.Size() >= theGame.params.MAX_DYNAMICALLY_SPAWNED_BOATS) { dynamicallySpawnedBoatsToDestroy.PushBack( dynamicallySpawnedBoats[0] ); dynamicallySpawnedBoats.Erase(0); } } } } public final function IsBoatMarkedForDestroy(boat : W3Boat) : bool { var handle : EntityHandle; var i : int; EntityHandleSet(handle, boat); for(i=0; i<dynamicallySpawnedBoatsToDestroy.Size(); i+=1) { if(handle == dynamicallySpawnedBoatsToDestroy[i]) { dynamicallySpawnedBoatsToDestroy.EraseFast(i); return true; } } return false; } public final function VibrateControllerVeryLight(optional duration : float) { if ( !theInput.LastUsedGamepad() ) return; if(duration == 0) duration = 0.15f; if(IsSpecificRumbleActive(0.2, 0)) { OverrideRumbleDuration(0.2, 0, duration); } else { VibrateController(0.2, 0, duration); } } public final function VibrateControllerLight(optional duration : float) { if ( !theInput.LastUsedGamepad() ) return; if(duration == 0) duration = 0.2f; if(IsSpecificRumbleActive(0.5, 0)) { OverrideRumbleDuration(0.5, 0, duration); } else { VibrateController(0.5, 0, duration); } } public final function VibrateControllerHard(optional duration : float) { if ( !theInput.LastUsedGamepad() ) return; if(duration == 0) duration = 0.2f; if(IsSpecificRumbleActive(0.75, 0.75)) { OverrideRumbleDuration(0.75, 0.75, duration); } else { VibrateController(0.75, 0.75, duration); } } public final function VibrateControllerVeryHard(optional duration : float) { if ( !theInput.LastUsedGamepad() ) return; if(duration == 0) duration = 0.5f; if(IsSpecificRumbleActive(1, 1)) { OverrideRumbleDuration(1, 1, duration); } else { VibrateController(1, 1, duration); } } import public final function GetWorldDLCExtender() : CR4WorldDLCExtender; public function GetMiniMapSize( areaType : int ) : float { var mapSize : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 1, areaType ); if( StrLen( valueAsString ) != 0 ) { mapSize = StringToFloat( valueAsString ); } else { mapSize = GetWorldDLCExtender().GetMiniMapSize( areaType ); } return mapSize; } public function GetMiniMapTileCount( areaType : int ) : int { var tileCount : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 2, areaType ); if( StrLen( valueAsString ) != 0 ) { tileCount = StringToInt( valueAsString ); } else { tileCount = GetWorldDLCExtender().GetMiniMapTileCount( areaType ); } return tileCount; } public function GetMiniMapExteriorTextureSize( areaType : int ) : int { var exteriorTextureSize : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 3, areaType ); if( StrLen( valueAsString ) != 0 ) { exteriorTextureSize = StringToInt( valueAsString ); } else { exteriorTextureSize = GetWorldDLCExtender().GetMiniMapExteriorTextureSize( areaType ); } return exteriorTextureSize; } public function GetMiniMapInteriorTextureSize( areaType : int ) : int { var interiorTextureSize : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 4, areaType ); if( StrLen( valueAsString ) != 0 ) { interiorTextureSize = StringToInt( valueAsString ); } else { interiorTextureSize = GetWorldDLCExtender().GetMiniMapInteriorTextureSize( areaType ); } return interiorTextureSize; } public function GetMiniMapTextureSize( areaType : int ) : int { var textureSize : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 5, areaType ); if( StrLen( valueAsString ) != 0 ) { textureSize = StringToInt( valueAsString ); } else { textureSize = GetWorldDLCExtender().GetMiniMapTextureSize( areaType ); } return textureSize; } public function GetMiniMapMinLod( areaType : int ) : int { var minLod : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 6, areaType ); if( StrLen( valueAsString ) != 0 ) { minLod = StringToInt( valueAsString ); } else { minLod = GetWorldDLCExtender().GetMiniMapMinLod( areaType ); } return minLod; } public function GetMiniMapMaxLod( areaType : int ) : int { var maxLod : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 7, areaType ); if( StrLen( valueAsString ) != 0 ) { maxLod = StringToInt( valueAsString ); } else { maxLod = GetWorldDLCExtender().GetMiniMapMaxLod( areaType ); } return maxLod; } public function GetMiniMapExteriorTextureExtension( areaType : int ) : string { var exteriorTextureExtension : string; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 8, areaType ); if( StrLen( valueAsString ) != 0 ) { exteriorTextureExtension = ExtractStringFromCSV( valueAsString ); } else { exteriorTextureExtension = GetWorldDLCExtender().GetMiniMapExteriorTextureExtension( areaType ); } return exteriorTextureExtension; } public function GetMiniMapInteriorTextureExtension( areaType : int ) : string { var interiorTextureExtension : string; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 9, areaType ); if( StrLen( valueAsString ) != 0 ) { interiorTextureExtension = ExtractStringFromCSV( valueAsString ); } else { interiorTextureExtension = GetWorldDLCExtender().GetMiniMapInteriorTextureExtension( areaType ); } return interiorTextureExtension; } public function GetMiniMapVminX( areaType : int ) : int { var vminX : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 11, areaType ); if( StrLen( valueAsString ) != 0 ) { vminX = StringToInt( valueAsString ); } else { vminX = GetWorldDLCExtender().GetMiniMapVminX( areaType ); } return vminX; } public function GetMiniMapVmaxX( areaType : int ) : int { var vmaxX : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 12, areaType ); if( StrLen( valueAsString ) != 0 ) { vmaxX = StringToInt( valueAsString ); } else { vmaxX = GetWorldDLCExtender().GetMiniMapVmaxX( areaType ); } return vmaxX; } public function GetMiniMapVminY( areaType : int ) : int { var vminY : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 13, areaType ); if( StrLen( valueAsString ) != 0 ) { vminY = StringToInt( valueAsString ); } else { vminY = GetWorldDLCExtender().GetMiniMapVminY( areaType ); } return vminY; } public function GetMiniMapVmaxY( areaType : int ) : int { var vmaxY : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 14, areaType ); if( StrLen( valueAsString ) != 0 ) { vmaxY = StringToInt( valueAsString ); } else { vmaxY = GetWorldDLCExtender().GetMiniMapVmaxY( areaType ); } return vmaxY; } public function GetMiniMapSminX( areaType : int ) : int { var sminX : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 15, areaType ); if( StrLen( valueAsString ) != 0 ) { sminX = StringToInt( valueAsString ); } else { sminX = GetWorldDLCExtender().GetMiniMapSminX( areaType ); } return sminX; } public function GetMiniMapSmaxX( areaType : int ) : int { var smaxX : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 16, areaType ); if( StrLen( valueAsString ) != 0 ) { smaxX = StringToInt( valueAsString ); } else { smaxX = GetWorldDLCExtender().GetMiniMapSmaxX( areaType ); } return smaxX; } public function GetMiniMapSminY( areaType : int ) : int { var sminY : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 17, areaType ); if( StrLen( valueAsString ) != 0 ) { sminY = StringToInt( valueAsString ); } else { sminY = GetWorldDLCExtender().GetMiniMapSminY( areaType ); } return sminY; } public function GetMiniMapSmaxY( areaType : int ) : int { var smaxY : int; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 18, areaType ); if( StrLen( valueAsString ) != 0 ) { smaxY = StringToInt( valueAsString ); } else { smaxY = GetWorldDLCExtender().GetMiniMapSmaxY( areaType ); } return smaxY; } public function GetMiniMapMinZoom( areaType : int ) : float { var minZoom : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 19, areaType ); if( StrLen( valueAsString ) != 0 ) { minZoom = StringToFloat( valueAsString ); } else { minZoom = GetWorldDLCExtender().GetMiniMapMinZoom( areaType ); } return minZoom; } public function GetMiniMapMaxZoom( areaType : int ) : float { var maxZoom : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 20, areaType ); if( StrLen( valueAsString ) != 0 ) { maxZoom = StringToFloat( valueAsString ); } else { maxZoom = GetWorldDLCExtender().GetMiniMapMaxZoom( areaType ); } return maxZoom; } public function GetMiniMapZoom12( areaType : int ) : float { var zoom12 : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 21, areaType ); if( StrLen( valueAsString ) != 0 ) { zoom12 = StringToFloat( valueAsString ); } else { zoom12 = GetWorldDLCExtender().GetMiniMapZoom12( areaType ); } return zoom12; } public function GetMiniMapZoom23( areaType : int ) : float { var zoom23 : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 22, areaType ); if( StrLen( valueAsString ) != 0 ) { zoom23 = StringToFloat( valueAsString ); } else { zoom23 = GetWorldDLCExtender().GetMiniMapZoom23( areaType ); } return zoom23; } public function GetMiniMapZoom34( areaType : int ) : float { var zoom34 : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 23, areaType ); if( StrLen( valueAsString ) != 0 ) { zoom34 = StringToFloat( valueAsString ); } else { zoom34 = GetWorldDLCExtender().GetMiniMapZoom34( areaType ); } return zoom34; } public function GetGradientScale( areaType : int ) : float { var scale : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 24, areaType ); if( StrLen( valueAsString ) != 0 ) { scale = StringToFloat( valueAsString ); } else { scale = GetWorldDLCExtender().GetGradientScale( areaType ); } return scale; } public function GetPreviewHeight( areaType : int ) : float { var height : float; var valueAsString : string; valueAsString = minimapSettings.GetValueAt( 25, areaType ); if( StrLen( valueAsString ) != 0 ) { height = StringToFloat( valueAsString ); } else { height = GetWorldDLCExtender().GetPreviewHeight( areaType ); } return height; } private function UnlockMissedAchievements() { var manager : CCommonMapManager = theGame.GetCommonMapManager(); if ( manager ) { manager.CheckExplorerAchievement(); } GetWitcherPlayer().CheckForFullyArmedAchievement(); GetGamerProfile().CheckProgressOfAllStats(); if (FactsDoesExist("witcher3_game_finished")) { Achievement_FinishedGame(); } } public final function MutationHUDFeedback( type : EMutationFeedbackType ) { var hud : CR4ScriptedHud; var hudWolfHeadModule : CR4HudModuleWolfHead; hud = (CR4ScriptedHud)GetHud(); if ( hud ) { hudWolfHeadModule = (CR4HudModuleWolfHead)hud.GetHudModule( "WolfHeadModule" ); if ( hudWolfHeadModule ) { hudWolfHeadModule.DisplayMutationFeedback( type ); } } } } function hasSaveDataToLoad():bool { var currentSave : SSavegameInfo; var saveGames : array< SSavegameInfo >; theGame.ListSavedGames( saveGames ); if ( saveGames.Size() > 0 ) { return true; } return false; } exec function EnableLog( enable : bool ) { theGame.EnableLog( enable ); }
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
I made $15,000 in 2 days
CSS | 41 min ago | 0.23 KB
This summer smells like money
CSS | 43 min ago | 0.24 KB
API Glitch (Docs Leak)
CSS | 43 min ago | 0.24 KB
FB2600 User Handbook v0.91
1 hour ago | 6.06 KB
FB2600 Administrator & Moderator SOP
2 hours ago | 8.13 KB
Untitled
12 hours ago | 7.38 KB
c2l.puter.site
15 hours ago | 0.48 KB
Looksmaxxing
15 hours ago | 1.83 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!