Spawn with different tools?

Author Topic: Spawn with different tools?  (Read 734 times)

Hey, i was wondering if there is an addon that make it so when you spawn in your own hosted game. you spawn with specified items. Thanks

Have you tried using a minigame? You don't need a mod if you can stomach using it.

Its a good idea but that still takes time to do.
Its just because i want the tools as soon as i spawn because i always start building if i am host. ( Dont tell me to just get it im lazy. )

I'm quite certain this is simple to script and has in fact been made before.
While I agree that something like that would be very helpful, I think this belongs in the suggestions/requests thread

I'm sure this can be easily made.

I use this on my prison escape, you could probably stick it in with the onSpawn function and when it's called, call itemSpawn

function itemSpawn(%cl)
{
   if(isObject(%cl.player))
   {
      %cl.player.tool0 = fistItem.getID();
      %cl.player.tool1 = keyItem.getID();
      messageClient(%cl, 'MsgItemPickup', '', 0, %cl.player.tool[0]);
      messageClient(%cl, 'MsgItemPickup', '', 1, %cl.player.tool[1]);
   }
}