Sorry but im not here to answer your question but to make another one. This thread is help please inst?

Ok hereīs my question:
Iīve made a simple gameobject script to summon a npc at the player who clicked the gameobject position. hereīs the code:
function footmanarmy_OnUse(pUnit,event)
x = pUnit:GetX();
y = pUnit:GetY();
z = pUnit:GetZ();
o = pUnit:GetO();
pUnit:SpawnCreature(17257, x, y, z, o, 80, 43200000);
end
RegisterGameObjectEvent(1000084, 2, "footmanarmy_OnUse");
is something wrong with my code? Iīve made the script with notepad, changed the extension of it to .lua and had saved it in the scripts folder in my "Scripted's 2.4.3 Blizzlike Repack" (canīt remember who made it). The gameobject in question its a gameobject with id 1000084 and its a button (code 1 in mysql) and still the script doesnīt work when i click it in game. Whatīs possibly could be wrong? Itīs because it hasnīt been loaded in the arc-emu world.exe when i open the server? What can i do to make it be loaded? (Obs: i know it wonīt summon a footman but magtheridon. This is just a test script.

)