0 Üye ve 1 Ziyaretçi konuyu incelemekte.
addCommandHandler( 'st', function( playerSource, commandName ) if ( statsSystem == 'true' ) then local playerAccount = getPlayerAccount( playerSource ) if ( isGuestAccount( playerAccount ) ) then outputChatBox ( "Hesabınıza Giriş Yapmadan Bu Komutu Kullanamazsınız !", playerSource, 222, 100, 100 ) else --[[ local kills = getElementData( playerSource, 'saveKills' ) local headshots = getElementData( playerSource, 'saveHeadShots' ) local deaths = getElementData( playerSource, 'saveDeaths' ) ]] local kills = getAccountData( playerAccount, "stealth.kills" ) local deaths = getAccountData( playerAccount, "stealth.deaths" ) local headshots = getAccountData( playerAccount, "stealth.headshots" ) local kdr = round( kills / deaths, KDR_DECIMAL_PLACES ) outputChatBox( '#FFFFFF'..getPlayerName( playerSource )..'): #FFF000[Öldürme]: #FFFFFF'..kills..'#FFF000 [Ölüm]: #FFFFFF'..deaths..'#FFF000 [Kafadan Vurma]: #FFFFFF'..headshots.. '#FFF000 [Oran]: #FFFFFF'..kdr, getRootElement( ), 0, 255, 0, true ) end end end)