Few things need help on

Post Reply
soulsin
Posts: 102
Joined: Sun Mar 17, 2013 9:06 am

Few things need help on

Post by soulsin » Mon Jul 14, 2014 2:32 pm

Ok I would like add command @chocobo but cant seem get put in correct. Also GM Icons, I can remember what shows for SGM, LGM, Head/Producer. Use to be way to find them with their ID's.

Also NPC that got no script to it and adding one to make on trade item. It give you items that listed for reward when trade certain item/items.
I just want to be able trade and get items not require quest or mission to get them, trying setup for players so they be able farm the Certain items to get the gear from the NPC.
[GM] Soulsin

User avatar
demolish
Developer
Posts: 262
Joined: Thu Jul 26, 2012 7:12 am

Re: Few things need help on

Post by demolish » Mon Jul 14, 2014 3:07 pm

chocobo is an animation
GM icons i dont even think theres SGM anymore, check togglegm command

for the npc trade crap, have a look at existing scripts
<Giblet[NewBrain]> kj with this first step would be fine on my shit
Click here for a guide on scripting missions.

User avatar
Signature
Posts: 126
Joined: Fri May 02, 2014 3:44 am

Re: Few things need help on

Post by Signature » Mon Jul 14, 2014 3:50 pm

Code: Select all

-----------------------------------------------------------------
--@chocobo
--calls chocobo
-----------------------------------------------------------------


cmdprops =
{
    permission = 0,
    parameters = "s"
};


function onTrigger(player)
	player:addStatusEffect(EFFECT_CHOCOBO, 1, 0, 99999);   -- The 99999 is a time it lasts. I just wanted it to never wear basically
	player:messagePublic(280, player, EFFECT_CHOCOBO, EFFECT_CHOCOBO);
end;

User avatar
kjLotus
Special Guest
Posts: 1813
Joined: Sun Jul 22, 2012 2:16 pm

Re: Few things need help on

Post by kjLotus » Mon Jul 14, 2014 3:56 pm

Signature wrote:The 99999 is a time it lasts. I just wanted it to never wear basically
0

User avatar
Signature
Posts: 126
Joined: Fri May 02, 2014 3:44 am

Re: Few things need help on

Post by Signature » Mon Jul 14, 2014 4:03 pm

with 0 it still wore off

soulsin
Posts: 102
Joined: Sun Mar 17, 2013 9:06 am

Re: Few things need help on

Post by soulsin » Mon Jul 14, 2014 6:39 pm

Ok kool o chocobo, i have looked, which i relook at scripts for npc. Got one atm but requires quest before accept the trade. In command togglegm it got flag ther but not for type of gm, but i remember in past on another server type in tons flags looking for right ones. But ones now is fine
[GM] Soulsin

Post Reply