Initial Commit

Initial Commit
This commit is contained in:
Jaysyn904
2025-04-03 11:24:16 -04:00
parent 3ba3cf1b81
commit 5e558169a0
6086 changed files with 1502996 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
void main()
{
object oPC = GetLastUsedBy();
object oMod = GetModule();
int oTicket = GetLocalInt(oPC, "has_ticket");
if (GetLocalInt(oMod, "mod_mode")==1)
{
PlaySound("sim_cntresist");
FloatingTextStringOnCreature
("*** Nice Try ***", oPC);
return;
}
if (oTicket==1)
{
SetLocalInt(oPC, "has_ticket", 0);
CreateItemOnObject("sxillwa", oPC, 1);
CreateItemOnObject("bzedyer", oPC, 1);
CreateItemOnObject("trqcva", oPC, 1);
CreateItemOnObject("fgnpde", oPC, 1);
CreateItemOnObject("qxcove", oPC, 1);
CreateItemOnObject("bsntfn", oPC, 1);
CreateItemOnObject("ahuvpw", oPC, 1);
CreateItemOnObject("arscod", oPC, 1);
CreateItemOnObject("deitzy", oPC, 1);
PlaySound("gui_select");
PlaySound("sce_positive");
FloatingTextStringOnCreature("** Tickets re-issued **", oPC);
}
else
{
PlaySound("sim_cntresist");
FloatingTextStringOnCreature("You already have your arena tickets", oPC);
}
}