厉害救济 1 Report post Posted November 27, 2017 there any scripts that can set bambi player with 10s godmode when they respwan ? Share this post Link to post Share on other sites
ka0s 457 Report post Posted November 27, 2017 There already is such functionality, I think you're bambi for like 5 minutes, however if you pickup a weapon the godmode will be cancelled. Share this post Link to post Share on other sites
dima054 59 Report post Posted November 27, 2017 You aren't godmoded when you are a bambi. Share this post Link to post Share on other sites
Z80CPU 469 Report post Posted November 27, 2017 It is easy to create: Block Listing: 1 - Player spawns in 1a - ExecVM God script (Call Subroutine) - This script turns off player damage, loops doing noting for 10 seconds, then turns it back on, then exits. 2 - Normal spawning actions God mode on: (vehicle player) removeAllEventHandlers "handleDamage"; (vehicle player) addEventHandler ["handleDamage", { false }]; (vehicle player) allowDamage false; God mode off: (vehicle player) addEventHandler ["handleDamage", { true }]; (vehicle player) removeAllEventHandlers "handleDamage"; (vehicle player) allowDamage true; It is not that hard to do! You have to be concerned with if they spawn in the air. They could be in the air >10 seconds. 2 Share this post Link to post Share on other sites
厉害救济 1 Report post Posted December 15, 2017 thanks for you help Share this post Link to post Share on other sites