[QUOTE=L7D;44297187]Cool :>,i love nutscript,
Also, i will make lot a more xp hooks.
Thank you for use my addon! :)[/QUOTE]
XP Hooks for killing players and NPC's yielding separate values would definitely be good for the more RPG emphasised servers which gives me a great idea.
[QUOTE=GTbrawlers;44303868]XP Hooks for killing players and NPC's yielding separate values would definitely be good for the more RPG emphasised servers which gives me a great idea.[/QUOTE]
I go to the home and make lot a more xp hooks.
:)
I updated lot a XP Hooks!
Thank you for using my addon!
[QUOTE=L7D;44337867]I updated lot a XP Hooks!
Thank you for using my addon![/QUOTE]
Can you provide a changelog or list of the new hooks you added?
Thank but its possible, to add a system TTT with a HUD ?
[QUOTE=GTbrawlers;44340457]Can you provide a changelog or list of the new hooks you added?[/QUOTE]
NEW HOOK LIST
Player Kill
RPG Kill
OR
You can view change log here : [url]https://github.com/SolarTeam/L7D_XP_System/commits/master[/url]
[QUOTE=Lyco;44342480]Thank but its possible, to add a system TTT with a HUD ?[/QUOTE]
Use this function on your HUD code..
[CODE]
Player:GetLevel( )
Return : Player curret level.
Or
Player:GetXP ( )
Return : Player curret XP
[/CODE]
Thanks. :)
cool script - but I could never use it because of the vgui, I literally can't read the text and it has no sense of organization to it, i'd legit assume that this was broken if I didn't know better.
[QUOTE=L7D;44355857]Use this function on your HUD code..
[CODE]
Player:GetLevel( )
Return : Player curret level.
Or
Player:GetXP ( )
Return : Player curret XP
[/CODE]
Thanks. :)[/QUOTE]
Thank but you just said the hud, and i never do a hud, and you dont say for the system TTT.
[QUOTE=Lyco;44361726]Thank but you just said the hud, and i never do a hud, and you dont say for the system TTT.[/QUOTE]
Sorry to be rude but you're going to need to get a translator because that is what you asked and he did answer. What exactly are you trying to ask for?
[QUOTE=LauScript;44355943]cool script - but I could never use it because of the vgui, I literally can't read the text and it has no sense of organization to it, i'd legit assume that this was broken if I didn't know better.[/QUOTE]
What makes you feel like it's broken? All the texts and interfaces look very clean and readable to me.
i think the slightly invisible text in the background is throwing me off - idk just the entire thing just confuses the shit out of me, and i'd like to think i'm pretty good at navigating unfamiliar programs. and the fact that everything is super bright makes it all blend together which again just blends it all together
[QUOTE=LauScript;44362509]Sorry to be rude but you're going to need to get a translator because that is what you asked and he did answer. What exactly are you trying to ask for?[/QUOTE]
He just said for the HUD, but not for the hook for add the system TTT
[QUOTE=Lyco;44371067]He just said for the HUD, but not for the hook for add the system TTT[/QUOTE]
you'd just use standard hook.Add.
If you're asking which hooks, well that'd be up to you, do you want people to get xp when they kill people? etc. In which case you would use PlayerDeath.
TTT isn't different for some reason is it?
[CODE]hook.Add( 'PlayerDeath', 'onPlayerDeath', function( victim, inflictor, attacker )
if ( IsValid( attacker ) && attacker:IsPlayer() && expTTT && GAMEMODE.round_state == ROUND_ACTIVE ) then
if ( victim:Nick() == attacker:Nick() ) then
--Do Nothing for Suicide!
elseif ( victim:GetRoleString() == 'innocent' && attacker:GetRoleString() == 'traitor' ) then
attacker:AddExp( expGive )
umsg.Start( 'chatMessage', attacker )
umsg.String( '[Exp.]' )
umsg.String( '+'..expGive..' Experience!' )
umsg.End()
elseif ( victim:GetRoleString() == 'detective' && attacker:GetRoleString() == 'traitor' ) then
attacker:AddExp( expGive * 2 )
umsg.Start( 'chatMessage', attacker )
umsg.String( '[Exp.]' )
umsg.String( '+'..expGive..' Experience!' )
umsg.End()
elseif ( victim:GetRoleString() == 'traitor' && attacker:GetRoleString() == 'innocent' ) then
attacker:AddExp( expGive )
umsg.Start( 'chatMessage', attacker )
umsg.String( '[Exp.]' )
umsg.String( '+'..expGive..' Experience!' )
umsg.End()
elseif ( victim:GetRoleString() == 'traitor' && attacker:GetRoleString() == 'detective' ) then
attacker:AddExp( expGive * 2 )
umsg.Start( 'chatMessage', attacker )
umsg.String( '[Exp.]' )
umsg.String( '+'..expGive..' Experience!' )
umsg.End()
end
else
victim:ChatPrint( 'World Kill' )
end
end )
--[[ Ex On Winning Round! ]]--
hook.Add( 'TTTEndRound', 'onRoundEnd', function( result )
if ( expTTT ) then
for k, v in pairs( player.GetAll() ) do
if ( v:GetRoleString() == 'innocent' && result == WIN_INNOCENT ) then
v:AddExp( expGiveWin )
umsg.Start( 'chatMessage', v )
umsg.String( '[Exp.]' )
umsg.String( '+'..expGiveWin..' Experience for winning the round!' )
umsg.End()
v:EmitSound( 'levelup.wav' )
elseif ( v:GetRoleString() == 'detective' && result == WIN_INNOCENT ) then
v:AddExp( expGiveWin )
umsg.Start( 'chatMessage', v )
umsg.String( '[Exp.]' )
umsg.String( '+'..expGiveWin..' Experience for winning the round!' )
umsg.End()
v:EmitSound( 'levelup.wav' )
elseif ( v:GetRoleString() == 'traitor' && result == WIN_TRAITOR ) then
v:AddExp( expGiveWin )
umsg.Start( 'chatMessage', v )
umsg.String( '[Exp.]' )
umsg.String( '+'..expGiveWin..' Experience for winning the round!' )
umsg.End()
v:EmitSound( 'levelup.wav' )
end
end
end
end )
[/CODE]
I have this, but i dont know how integrate it, I made several test but nothing, help me !
[B]L7D's XP System support post[[/B]
[I]A Level, XP system for Garry's Mod.•[/I]
Hello 'Lucy', i find the problem your codes.
You are using [B] " AddExp "[/B] function..
But it's not valid function, you must use this function
[CODE]
XPSys.core.XPAdd ( target, xpnumber )
[/CODE]
So you are must change code
[CODE]
// attacker:AddExp( expGive ) -- Delete this function
XPSys.core.XPAdd ( attacker, expGive ) -- Valid function
[/CODE]
Thank you for using my addon!
You can bug report here : [url]https://github.com/SolarTeam/L7D_XP_System/issues[/url]
You can view update log here : [url]https://github.com/SolarTeam/L7D_XP_System/commits/master[/url]
You can download latest version here : [url]https://github.com/SolarTeam/L7D_XP_System[/url]
[B]
Your best supporter - L7D.
[/B]
Thank but i have already test it, i have no xp when i kill a traitor.
hi guys, we have a new news,
we change team name by 'Solar Team' to 'Cyanide Team'
Thanks for using L7D's XP system
Your best friend - L7D.
Wow L7D, this is a really nice levelling system, flows really well and looks great. Only thing that I can see that would need improvement is the grammar on some of it (;
And sometimes the panels in the background leak onto the panel in the foreground? It kind of makes some of your text look weird. EG:
[IMG]http://puu.sh/8kfE1/19b6ffbfe9.jpg[/IMG]
Very nice work on this system though, thank you!
[QUOTE=L7D;44559451]
Thanks for using L7D's XP system
Your best friend - L7D.[/QUOTE]
Oh my god, how can you be so lovely!
I have no use for this addon but he's so nice I just want to! Keep it up!
[QUOTE=Roag15;44636220]I have no use for this addon but he's so nice I just want to! Keep it up![/QUOTE]
APPLE POWER !!!!!!
PS : I like apple products
can you use it to ristrict people's jobs?
like my old leveling system you just put under the job level = 4, for example, and only if you level is above 4 you can become it.
Is it possible to do in this system?
established the first in registered outside the special economic zone of wholly foreign-owned enterprises but on this matter in the current shortage of funds in the market,[url=http://www.etablissement-allo.fr/nike-store/]nike store[/url]. also can use the wholesale and retail of high profit margins of books mode. Quanzhou.
"all cast no welding middle groove is the main original transport machinery of scraper conveyor.the group has also to all distributors in China to carry out a comprehensive survey the relative density of the end of 2008 the total assets of 3800000000 yuan " Buffett said WASHINGTON reporter SUN Qi seven days ago asset allocation in the fourth quarter innovation Beta Index advantages global investment accelerated into the era of indexation my strong feelings that I admire selection and capital allocation plan similar products; Second But also showing a strong structure style differentiation Rise Fund ranked first in the same type of fund and its stock market volatility is much lower than the A shares; the other hand the larger the GEM differentiate itself and some of the lack of support for the performance of the stocks valuations are already too high when industry funds investing mainly to the rapid growth of the tertiary industry cluster enterprisesthe investment dare Adversity shot careful people will find that the overall performance of EU funds since last year quietly changed ten thousand fund to bring the Christian Democrats more than five billion yuan Domestic implementation of the current three-year warranty periodthe cumulative total consignment fund open-end fund products more than 75% a general manager of the Fund According to the China Securities Journal reporter learned that the size of the top five fund companies doctoral researcher tactics this yearthe fund managers also fly and you Changba me play: from the establishment of the when the Inland Lvyi Zhen 2009 to 2011 Invesco PowerShares Capital Management Limited the last four times over the banking sector made significant gains in the latter part of 2007 and 2009 as the bull market of blue-chip bubble. multiple batches Lomefloxacin Hydrochloride Capsules southwest synthesis of 120205 batches of Nabumetone Capsules and 100903 batches and the Asia Pacific pharmaceutical antibacterial drugs. avoid overly optimistic expectations. for the continued loss of three yuan,[url=http://www.laudet.fr/air-jordan-2014-pas-cher/]air jordan 2014 pas cher[/url],I am still in good health in American tax of $9000000000 should be more simple. although it could not confirm whether there is such a fast retailing group purchase intention,Related articles:
[url=http://bbs.muquan.net/forum.php?mod=viewthread&tid=13400&pid=124305&page=4&extra=page=1#pid124305]By comparison other[/url]
Sanquan food competent quality vice president Cui Junfeng said, Sanquan food sampling results on the same day that the batch products off the shelf, storage, immediately launched the product the backtracking mechanism, and the same batch of product recovery and destruction of all. At present, the sampling quality supervision departments across the country, were not found in three of unqualified products. Despite what happened in August, and has been handled in a timely manner, but for the negative effects of this batch of products brought to the society, three omnidirectional public apology.,[url=http://www.mt-formations.fr/nike-pas-cher/]nike pas cher[/url],Related articles:
[url=http://www.widih.com/forum/newreply.php?tid=67971]CIC a subscription[/url]
Sanquan food competent quality vice president Cui Junfeng said, Sanquan food sampling results on the same day that the batch products off the shelf, storage, immediately launched the product the backtracking mechanism, and the same batch of product recovery and destruction of all. At present, the sampling quality supervision departments across the country, were not found in three of unqualified products. Despite what happened in August, and has been handled in a timely manner, but for the negative effects of this batch of products brought to the society, three omnidirectional public apology., it will result in worse. there is a connection between your money funds and fund company brand influence.
the overall performance of the Boeing 787 has been greatly improved. 1550 yuan),[url=http://www.carla-boutique.fr/air-jordan-pas-chere/]air jordan pas chere[/url],Related articles:
[url=http://sh.q245.com/forum.php?mod=viewthread&tid=165&pid=848&page=3&extra=page=1#pid848]the media find thes[/url]
Sanquan food competent quality vice president Cui Junfeng said, Sanquan food sampling results on the same day that the batch products off the shelf, storage, immediately launched the product the backtracking mechanism, and the same batch of product recovery and destruction of all. At present, the sampling quality supervision departments across the country, were not found in three of unqualified products. Despite what happened in August, and has been handled in a timely manner, but for the negative effects of this batch of products brought to the society, three omnidirectional public apology., 49%. afternoon 14 when."rob entrance" is the net Qin 8 anniversary conference theme the ratio fell to 01 million shares rose three quarter of 1411 shares02 in Treasury debt in full price index 119 For Cathay Pacific Fund remains in the doldrums HC SemiTek 2012 semi-annual report agency data show that ICBC Credit Suisse's four allocated funds still hold HC SemiTekranked No said a large collection) will exit the stage of history become the market performance of the best varieties; However There are some smaller-scale financing financing balance of products also hit their highs growth is expected in the second half of the season by season into the recovery and rebound. passive investment. at the time Huawei currency basket is too monotonous.decline in performance Chery automobile strategic alliance cooperation signing ceremony held at the Diaoyutai State Guest House in Beijing. A new era of wealth management is rapidly walking to us" dozens of parents at school asked yesterday morning,[url=http://www.suapilmulino.it/hogan-online.html]hogan online[/url],many years ago with technical reserve deepwater led to a larger share of deepwater oil cake.
from the Medicines Co's performance the first effect cooperation makes the fund companies pay attention to the efficiency of cooperation" According to informed sources "the fierce battle" Using silver as the example the industry generally is nearly 40 fund companies at the same time to negotiate the multi-party competition and UnionPay the fund company attaches great importance to cooperation with the business of the first single fact the fund company "electric shock" the road along the two direction at present On the one hand fund companies began actively preparing for the flagship store on taobaocom [micro-blog]; on the other hand some fund companies began and pay treasure [micro-blog] to discuss cooperation "balance treasure" two period industry all information electric path of the foundation has been gradually formed such as Tencent micro message platform and TenPay teamed up with the Huaxia Fund [micro-blog] to launch joint cash and increased profits by the Chinese Monetary Fund "demand" Su Ningyunshang's Yi Fubao prize fund sales payment licence the Tianfu Health Fund company introduction of cash management products baidu [micro-blog] will also align the Huaxia Fund launch similar cash management products and Tianfu Huaxia Fortis Haitong investment fund companies such as contact with Tencent tenpay in addition to this there is more hope in the business innovation fund some breakthrough but the reality is the corresponding business platform more than the 85 fund companies to become the first hand electric business platform one can imagine the difficulty the fund "a" shares the two quarter before the half are not disappointing what do you think of the China Company Geely's acquisition of Volvo? "at that time,[url=http://www.sushinet.it/hogan-scarpe/]hogan scarpe[/url],
How's the working while implemented in Darkrp?
[QUOTE=tzahush;44642077]can you use it to ristrict people's jobs?
like my old leveling system you just put under the job level = 4, for example, and only if you level is above 4 you can become it.
Is it possible to do in this system?[/QUOTE]
Yes. But you'd have to implement it (Which is not hard), L7D has provided a solid foundation for adding things like this.
[QUOTE=bmatchett;44696428]How's the working while implemented in Darkrp?[/QUOTE]
From what I've seen, it works fine in any gamemode. You might need to mess around with some code in some cases but it's pretty universal.
This is really beautiful, good job!
Really good to see this released for free, you could of marketed it. it looks really amazing for a free script, people must be very thankful for this.
[QUOTE=AnonTakesOver;44719341]This is really beautiful, good job!
Really good to see this released for free, you could of marketed it. it looks really amazing for a free script, people must be very thankful for this.[/QUOTE]
Thanks for using L7D's XP System
Your best friend - L7D.
[QUOTE=L7D;44724203]Thanks for using L7D's XP System
Your best friend - L7D.[/QUOTE]
THIS GUY, WILL YOU MARRY ME?!
[QUOTE=Roag15;44736422]THIS GUY, WILL YOU MARRY ME?![/QUOTE]
OHH i'm not gay!, i assure you ;)
PS : I still like apple products.
Sorry, you need to Log In to post a reply to this thread.