mmmm ja das clonearme kannst du haben.
normalerweise bin ich was zögerlich geworden in sachen seine skripte weiter geben.
habe zum beispiel auf der seite rodsmods gesehen das der titan mein kamikaze skript
einfach da gepostet hat und es als seins ausgibt.
Code:
-- --------------------------------------------------------------------------------------------------------------------------
-- !clonearme = Clonearme
-- --------------------------------------------------------------------------------------------------------------------------
AEGIS.chatCommands.clonearme = {};
function AEGIS.chatCommands.clonearme:func(player, chatMsg)
local xPrestigePoints = g_gameRules:GetPlayerPP(player.id)
if (xPrestigePoints < 1500) then
XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">Clone Arme kostet 1500 Prestige Points</font><font color=\"#ff0000\">]</font>"); return;else g_gameRules:AwardPPCount(player.id, -1500);end
if(player:IsDead()) then return end
if(player.actor:GetSpectatorMode()~=0) then return end
if(cloneLock) then
XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">Clone Arme ist erst in 30 Sekunden wieder nutzbar</font><font color=\"#ff0000\">]</font>"); return end
Script.SetTimer( 000001,function() clonearmeLock = true; end);
Script.SetTimer( 000002,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">IHRE CLONE ARME WIRD ERSTELLT</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 003000,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">010%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 003500,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">020%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 004000,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">030%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 004500,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">040%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 005000,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">050%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 005500,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">060%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 006000,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">070%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 006500,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">080%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 007000,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">090%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 007500,function() XSendBigCenterMessageToPlayer(player,"<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">100%</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 009000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 010000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 012000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 014000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 016000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 018000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 020000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 022000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 024000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 026000,function() System.ExecuteCommand(XFormat("x_spawn %s 3 Player", player:GetName())); end);
Script.SetTimer( 028000,function() System.ExecuteCommand(XFormat("x_player_name Player CLONE", player:GetName())); end);
Script.SetTimer( 029000,function() XSendBigCenterMessageToPlayer(player, "<font color=\"#ff0000\">[</font><font color=\"#FFFFFF\">CLONE ARME ERSTELLT</font><font color=\"#ff0000\">]</font>"); end);
Script.SetTimer( 030000,function() clonearmeLock = false; end);end