Downloads containing Elevator.mut

Downloads
Name Author Game Mode Rating
TSF with JJ2+ Only: Elevator Cranky Mutator N/A Download file

File preview

#include "DialogueBox.asc"
#pragma require "DialogueBox.asc"
#include "Elevator.asc"
#pragma require "Elevator.asc"
#include "elevatorHelp.asc"
#pragma require "elevatorHelp.asc"
#include "elevatorEditor.asc"
#pragma require "elevatorEditor.asc"

void onLevelLoad()
{
	Elevator_OnLevelLoad();
}

void onMain()
{
	Elevator_OnMain();
	ElevatorEditor_OnMain();
}

void onPlayer(jjPLAYER@ play)
{
	Elevator_OnPlayer(play);
}

void onReceive(jjSTREAM &in packet, int clientID)
{
	Elevator_OnReceive(packet, clientID);
}

bool onLocalChat(string &in text, CHAT::Type chatType)
{
	if(ElevatorEditor_OnLocalChat(text, chatType)) return true;
	return ElevatorAdmin_OnLocalChat(text, chatType);
}

bool onDrawScore(jjPLAYER@ play, jjCANVAS@ canvas)
{
	ElevatorEditor_Draw(play, canvas);
	return false;
}

void onPlayerInput(jjPLAYER@ play)
{
	ElevatorEditor_OnPlayerInput(play);
}