ineedbots / plutoscript

Plutonium IW5 script extension

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Plutoscript Framework

A collection of plugins to boost Plutonium IW5 script capabilities. Check PlutoniumProject forum for more information.

Install

Download the files from https://github.com/xensik/plutoscript/releases
Place plutoscript-framework.dll in 'plutoniumfolder'/storage/iw5/plugins


Usage

GSC Callbacks

Enables use of gsc thread calls.

Known Bugs:

  • Dont use entity fields at Scr_PlayerDamage, spaming entity field calls in a short period of time makes chai crash.

chaiscript:

def onStartupGameType()
{

}

add_callback_startup_game(onStartupGameType);
/* Params
	ePlayer: 	entity
	return: 	void
*/
def onPlayerConnect(ePlayer)
{

}

add_callback_player_connect(onPlayerConnect);
/* Params
	args: 		vector
	return: 	void
*/
def onPlayerConnected(args)
{
	var ePlayer = args[0];
	
}

level.onNotify("connected", onPlayerConnected);
/* Params
	args: 		vector
	return: 	void
*/
def onPlayerSpawned(args)
{
	var ePlayer = args[0];
}

level.onNotify("player_spawned", onPlayerSpawned);
/* Params
	ePlayer: 	entity
	return: 	void
*/
def onPlayerDisconnect(ePlayer)
{

}

add_callback_player_disconnect(onPlayerDisconnect);
/* Params
	ePlayer:		entity
	eInflictor: 		entity
	eAttacker:		entity
	iDamage:		integer
	iDflags:		integer
	sMeansOfDeath:		string
	sWeapon:		string
	vPoint:			vector
	vDir:			vector
	sHitloc:		string
	iTimeOffset:		integer
	return:			void
*/
def onPlayerDamage(ePlayer, eInflictor, eAttacker, iDamage, iDflags, sMeansOfDeath, sWeapon, vPoint, vDir, sHitloc, iTimeOffset)
{

}

add_callback_player_damage(onPlayerDamage);
/* Params
	ePlayer:		entity
	eInflictor: 		entity
	eAttacker:		entity
	iDamage:		integer
	sMeansOfDeath:		string
	sWeapon:		string
	vDir:			vector
	sHitloc:		string
	iTimeOffset:		integer
	iDeathAnimDuration: 	integer
	return:			void
*/
def onPlayerKilled(ePlayer, eInflictor, eAttacker, iDamage, sMeansOfDeath, sWeapon, vDir, sHitloc, iTimeOffset, iDeathAnimDuration)
{

}

add_callback_player_killed(onPlayerKilled);

Chat Messages

Adds support to write messages from the server.

chaiscript:

chat_raw_say_all("hello from chai");

output: hello from chai

chat_say_all("hello boyz");

output: console: hello boyz

chat_say_all("myserver", "hello boyz");

output: myserver: hello boyz

chat_raw_say_to(player.getEntNum(), "welcome");

output (only displayed to player): welcome

chat_say_to(player.getEntNum(), "hello bro");

output (only displayed to player): console: hello bro

chat_say_to(player.getEntNum(), "myserver", "ban warning (1/3)");

output (only displayed to player): myserver: ban warning (1/3)

Support for using entities directly will be added in the future (chat_say_to(player, "hi");)


Commands

Handle server and client commands

chaiscript: Execute server command:

cmd_execute("map_restart");

Handlers comming soon™

Info

iDamage & iDFlags values are passed by reference, you can edit them to modify GSC behavior.

Means of Death names:

MOD_UNKNOWN
MOD_PISTOL_BULLET
MOD_RIFLE_BULLET
MOD_EXPLOSIVE_BULLET
MOD_GRENADE
MOD_GRENADE_SPLASH
MOD_PROJECTILE
MOD_PROJECTILE_SPLASH
MOD_MELEE
MOD_HEAD_SHOT
MOD_CRUSH
MOD_FALLING
MOD_SUICIDE
MOD_TRIGGER_HURT
MOD_EXPLOSIVE
MOD_IMPACT

Hit Location names:

none
helmet
head
neck
torso_upper
torso_lower
right_arm_upper
left_arm_upper
right_arm_lower
left_arm_lower
right_hand
left_hand
right_leg_upper
left_leg_upper
right_leg_lower
left_leg_lower
right_foot
left_foot
shield

About

Plutonium IW5 script extension

License:MIT License


Languages

Language:C++ 99.8%Language:Lua 0.2%Language:Batchfile 0.0%