Welcome to the work f o r c e !
This is where i keep some of my stuff. It will be expanded upon over time.
More, fancier prefabs should be set up eventually.
Hang around, you may find something special.
LINKS:
Discord: Luffaren#1994
================================================================
A script+prefab package allowing you to hot-spawn ents via a global vscript function
You can easily add/remove the entity-classes available for spawning in the prefab .vmf
It also includes some extra general-purpose helper functions
A simple .bat-file .bsp packer, you simply drag+drop a .bsp into it.
It packs everything within the 'csgo' folder that's next to the .bsp file.
An app that handles mass-resizing .vtf files with a max-size-cap and a DXT1/DXT5 toggle.
Can be used to reduce filesize on maps, just read the included instructions and save backups/be careful.
A script+prefab for setting up an easy-to-use level system.
Add the .nut to a logic_case, and you're pretty much all set. Read the .nut for more detailed info.
A barebones physbox+thruster npc base that picks a random CT-target every X seconds and then moves towards the target.
This is by no means a complete system, but rather a base to start working your own NPC from.
A standalone script to handle keeping the targetname of weapons + detecting when a weapon has been dropped.
Just add the .nut to the "Entity Scripts" property of any weapon-entity and it'll work automatically.
================================================================
This plugin allows for instant Vscript-based hotfixes, QoL-tweaks, special events and VIP/patron-updates for Luffaren-maps.
The Vscripts are set up/managed by Luffaren centrally, and can be previewed below (in "CSGO Vscript configs").
If a Vscript config exists for the current map on the server, it will load in once as the map starts.
================================================================
These Vscript configs gets loaded in through the LuffarenMaps plugin as the map starts. Click on them to view a preview of the code below.
================================================================
--------------------------------------------------------------------------------------------------------
//============[ NOTE: permanent script scope > "luffarenmapsplugin_manager" ]============\\
scinit<-false;CDATA<-[];function InitializeScriptValidate(){if(!scinit)//Safety wrapper to retry loading the Vscript
{printl("[LuffarenMaps] Vscript ERROR - script not initialized!");if(Entities.FindByName(null,"luffarenmapsplugin_reload")==null)
{local e=Entities.CreateByClassname("info_target");e.__KeyValueFromString("targetname","luffarenmapsplugin_reload");}}}
EntFireByHandle(self,"RunScriptCode"," InitializeScriptValidate(); ",5.00,null,null);
//Called once when the script is initialized/reloaded
function Initialize()
{
if(scinit)return;scinit=true;printl("[LuffarenMaps] Vscript initialized!");
local h = null;while(null!=(h=Entities.FindByName(h,"luffarenmapsplugin_reload")))
{EntFireByHandle(h,"Kill","",0.00,null,null);}if(Entities.FindByName(null,"luffarenmapsplugin_success")==null)
{local e = Entities.CreateByClassname("info_target");e.__KeyValueFromString("targetname","luffarenmapsplugin_success");}
EntFireByHandle(self,"RunScriptCode"," InitializeCDATA(); ",0.01,null,null);
EntFireByHandle(self,"RunScriptCode"," RoundStart(true); ",0.02,null,null);
//XXXXXXXXXXXXXXX> init code goes here...
}
//Called once every round start (also just after 'Initialize' has been called)
function RoundStart(justinitalized=false)
{
printl("[LuffarenMaps] Vscript RoundStart() called!");
//XXXXXXXXXXXXXXX> roundstart code goes here (bool:justinitalized)...
EntFire("s_alucard_buttonfilter","AddOutput","OnUser4 !activator:RunScriptCode:TickAlucardModelStart();:0.5:1",0.20,null);
EntFire("s_alucard_buttonfilter","AddOutput","OnUser4 alucard_model:ClearParent::0.4:1",0.20,null);
}
//Called once when the script is initialized/validated
function DateTimeReceived(datetime)
{
printl("[LuffarenMaps] Vscript Datetime received! ("+datetime+")");
//XXXXXXXXXXXXXXX> DateTime code goes here (string:datetime "YYYY-MM-DD-MM-SS")...
}
//Called once when the script is initialized/validated
function ServerInfoReceived(info)
{
printl("[LuffarenMaps] Vscript ServerInfo received! ("+info+")");
//XXXXXXXXXXXXXXX> ServerInfo code goes here (string:info "serverIP-serverNAME")...
}
//Called once when the script is initialized/validated
function InitializeCDATA()
{
foreach(data in CDATA)
{
if(data.len()<=0)continue;local dds="";foreach(dd in data){dds=dds+"|"+dd;}dds=dds+"|";
printl("[LuffarenMaps] Vscript CustomData loaded! ("+dds+")");
//XXXXXXXXXXXXXXX> CustomData code goes here (data:[["IDENTIFIER","data..."]])...
}
}
//Called every time a client is validated/connected with name, userid and steamid
function ClientValidated(userid,steamid,name)
{
userid = userid.tointeger();
local s = [];for(local i=0;i<steamid.len();i++)
{
local ceil = 1+i;if(ceil>steamid.len())break;
local c = steamid.slice(i,ceil);if(c=="c")c=":";s.push(c);
}
steamid = "";foreach(ss in s)steamid = steamid+ss;
if(("PLAYERS" in this)&&("GetPlayerClass" in this))
{local pc = ::GetPlayerClass(steamid);if(pc==null)pc=::GetPlayerClass(userid);
if(pc==null)pc=::PlayerClass();pc.userid=userid;pc.steamid=steamid;pc.name=name;}
printl("[LuffarenMaps] Vscript client validated! ("+userid.tostring()+"|"+steamid+"|"+name+")");
//XXXXXXXXXXXXXXX> Client data connecting code goes here (int:userid, string:steamid, string:name)...
}
//fix alucard rendering by unparenting + script-ticking its position
alucardmodel <- null;
alucardowner <- null;
function TickAlucardModelStart()
{
alucardowner = activator;
alucardmodel = Entities.FindByName(null,"alucard_model");
EntFireByHandle(alucardmodel,"ClearParent","",0.00,null,null);
EntFireByHandle(alucardmodel,"ClearParent","",0.02,null,null);
EntFireByHandle(alucardmodel,"ClearParent","",0.05,null,null);
EntFireByHandle(alucardmodel,"ClearParent","",0.08,null,null);
EntFireByHandle(self,"RunScriptCode"," TickAlucardModelFix(); ",0.10,null,null);
}
function TickAlucardModelFix()
{
if(alucardmodel==null||!alucardmodel.IsValid())return;
if(alucardowner==null||!alucardowner.IsValid()||alucardowner.GetHealth()<=0||alucardowner.GetTeam()!=3)
{
EntFire("alucard_model*","Kill","",0.00,null);
if(alucardowner==null||!alucardowner.IsValid())return;
EntFireByHandle(alucardowner,"SetDamageFilter","",0.00,null,null);
EntFireByHandle(alucardowner,"SetDamageFilter","",0.01,null,null);
EntFireByHandle(alucardowner,"SetDamageFilter","",0.02,null,null);
EntFireByHandle(alucardowner,"SetHealth","-1",0.00,null,null);
EntFireByHandle(alucardowner,"SetHealth","-1",0.01,null,null);
EntFireByHandle(alucardowner,"SetHealth","-1",0.02,null,null);
EntFireByHandle(alucardowner,"SetHealth","-1",0.03,null,null);
alucardowner = null;
return;
}
EntFireByHandle(self,"RunScriptCode"," TickAlucardModelFix(); ",0.01,null,null);
alucardmodel.SetOrigin(alucardowner.GetOrigin()-(alucardowner.GetForwardVector()*20));
alucardmodel.SetAngles(0,alucardowner.GetAngles().y-90,0);
}
Initialize();//=============[RESERVED_CUSTOMDATA_BELOW]=============\\
CDATA.push(["VIP","STEAM_1:1:19059031","STEAM_1:0:419369057","STEAM_1:1:146402862","STEAM_1:1:161646505","STEAM_1:1:21998731","STEAM_1:1:2359822","STEAM_1:1:36935027","STEAM_1:0:123998228","STEAM_1:1:
90927558","STEAM_1:0:40225637","STEAM_1:1:57774125","STEAM_1:1:511378910","STEAM_1:0:447518922","STEAM_1:0:1726051","STEAM_1:0:82581980","STEAM_1:1:76518687","STEAM_1:0:545026218","STEAM_1:0:145949752
","STEAM_1:0:511909863","STEAM_1:0:36561009","STEAM_1:1:43037051","STEAM_1:0:60172513","STEAM_1:1:153776903","STEAM_1:1:23249841","STEAM_1:1:44083262","STEAM_1:0:87605592","STEAM_1:1:53399461","STEAM_
1:1:44846771","STEAM_1:0:48139771","STEAM_1:0:5225233","STEAM_1:0:45564798","STEAM_1:1:73344846","STEAM_1:1:11715703","STEAM_1:1:31574014","STEAM_1:1:523970","STEAM_1:1:22521282"]);
CDATA.push(["IDENTIFIER","data1","data2","data3"]);
CDATA.push([""]);
-------------------------------------------------------------------------------------------------------------