Need help?
Create a topic in the appropriate section
Don't write everything in the chat!Take a look at the marketplace
There you can buy
everything related to game serversDon't want a ban?
Please read our rules
Don't disturb the order!Sell or buy?
Use services of the guarantor
We will make your deal safe



- 0
-
Our picks
HI! I would like to ask for help with this script. Thank you very much!
When you throw the drop, the server is crash
https://github.com/VanillaPlusPlus/SupplyDropPlus
WIN-UK70O9BUIST, 27.09 2024 18:25:49 NULL pointer to instance Class: 'SupplyDropPlusPlane' Function: 'SupplyDropPlusPlane' Stack trace: $CurrentDir://mpmissions//dayzOffline.chernarusplus//SupplyDropPlus//SupplyDropPlusPlane.c:29 $CurrentDir://mpmissions//dayzOffline.chernarusplus//SupplyDropPlus//SupplyDropPlusManager.c:51 $CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:46 scripts/3_Game/dayzgame.c:2846 GameLabs/Scripts/3_Game/3_Hooking/рфіяФ*ќпор.ogg:7 JM/CF/Scripts/3_Game/communityframework\game\dayzgame.c:23 VPPAdminTools/3_Game/vppadmintools\vanillaplusplus.c:211
My Init.c
#include "$CurrentDir:mpmissions\dayzOffline.chernarusplus\Restart_System.c" #include "$CurrentDir:\\mpmissions\\dayzOffline.chernarusplus\\SupplyDropPlus\\SupplyDropPlusManager.c" void main() { //INIT ECONOMY-------------------------------------- Hive ce = CreateHive(); if ( ce ) ce.InitOffline(); //DATE RESET AFTER ECONOMY INIT------------------------- int year, month, day, hour, minute; int reset_month = 9, reset_day = 20; GetGame().GetWorld().GetDate(year, month, day, hour, minute); if ((month == reset_month) && (day < reset_day)) { GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute); } else { if ((month == reset_month + 1) && (day > reset_day)) { GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute); } else { if ((month < reset_month) || (month > reset_month + 1)) { GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute); } } } } class CustomMission: MissionServer { ref SupplyDropPlusManager airdrop; void CustomMission(){ airdrop = new SupplyDropPlusManager(); } override void OnUpdate(float timeslice){ super.OnUpdate(timeslice); airdrop.onUpdate(timeslice); } void SetRandomHealth(EntityAI itemEnt) { if ( itemEnt ) { float rndHlt = Math.RandomFloat( 0.45, 0.65 ); itemEnt.SetHealth01( "", "", rndHlt ); } } override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName) { Entity playerEnt; playerEnt = GetGame().CreatePlayer( identity, characterName, pos, 0, "NONE" ); Class.CastTo( m_player, playerEnt ); GetGame().SelectPlayer( identity, m_player ); return m_player; } override void StartingEquipSetup(PlayerBase player, bool clothesChosen) { EntityAI itemClothing; EntityAI itemEnt; ItemBase itemBs; float rand; itemClothing = player.FindAttachmentBySlotName( "Body" ); if ( itemClothing ) { SetRandomHealth( itemClothing ); itemEnt = itemClothing.GetInventory().CreateInInventory( "BandageDressing" ); player.SetQuickBarEntityShortcut(itemEnt, 2); string chemlightArray[] = { "Chemlight_White", "Chemlight_Yellow", "Chemlight_Green", "Chemlight_Red" }; int rndIndex = Math.RandomInt( 0, 4 ); itemEnt = itemClothing.GetInventory().CreateInInventory( chemlightArray[rndIndex] ); SetRandomHealth( itemEnt ); player.SetQuickBarEntityShortcut(itemEnt, 1); rand = Math.RandomFloatInclusive( 0.0, 1.0 ); if ( rand < 0.35 ) itemEnt = player.GetInventory().CreateInInventory( "Apple" ); else if ( rand > 0.65 ) itemEnt = player.GetInventory().CreateInInventory( "Pear" ); else itemEnt = player.GetInventory().CreateInInventory( "Plum" ); player.SetQuickBarEntityShortcut(itemEnt, 3); SetRandomHealth( itemEnt ); } itemClothing = player.FindAttachmentBySlotName( "Legs" ); if ( itemClothing ) SetRandomHealth( itemClothing ); itemClothing = player.FindAttachmentBySlotName( "Feet" ); } }; Mission CreateCustomMission(string path) { return new CustomMission(); }
Share this post
Link to post
Share on other sites