Raised This Month: $12 Target: $400
 3% 

Simple Exp Level Mod


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   ALL        Category:   Admin Commands       
eQuaniox
New Member
Join Date: Jun 2014
Old 06-13-2014 , 09:53   Simple Exp Level Mod
Reply With Quote #1

Simple Exp Level Mod Plugin

Hello, Everyone
My self eQuaniox Gaming & hosting owner
This is My first Plugin
What This plugin Do ?
*This plugins Gives Level on everykill
*Increases Hp & Damage Per Level
*Lagfree Plugin [Does Not effect on Smooth gaming or Fps]

Installation -
* copy exp_mod.amxx to your cstrike/addons/amxmodx/plugins
*Download exp_mod.sma and place it in your amxmodx/scripting folder then compile it (How to compile)
*Install plugin (move it from compiled to plugins) and write it's name in your plugins.ini file.

This is an screenshot~
Attached Files
File Type: sma Get Plugin or Get Source (exp_mod.sma - 1309 views - 5.6 KB)

Last edited by eQuaniox; 06-13-2014 at 10:51.
eQuaniox is offline
ironskillz1
AlliedModders Donor
Join Date: Jul 2012
Location: Sweden
Old 06-13-2014 , 09:59   Re: Simple Exp Level Mod
Reply With Quote #2

You arent allowed to post amxx files
__________________
I have many private and unique plugins for Jailbreak and Hide'N'Seek. PM me for more info.

Pm me.

Check out my roulette site.
ironskillz1 is offline
Send a message via Skype™ to ironskillz1
Old 06-13-2014, 10:07
eQuaniox
This message has been deleted by eQuaniox.
Neko3in1
Member
Join Date: Dec 2013
Location: Indonesia
Old 06-13-2014 , 10:09   Re: Simple Exp Level Mod
Reply With Quote #3

i see many plugin like this ..
__________________
BURN BURN BURN
Neko3in1 is offline
devilicioux
Veteran Member
Join Date: Jun 2013
Location: Delhi,India
Old 06-13-2014 , 10:25   Re: Simple Exp Level Mod
Reply With Quote #4

Quote:
Originally Posted by eQuaniox View Post
*Online Compiler has an problem So i uploaded the amxx File
Then you will have to ask a moderator to compile and attach that for you.

+ Redundant.
+ Sorry but Even Better XP Mods already exist.

So,Probably this is going to be unapproved.
__________________
You keep bringing ANTICHRISTUS down .. He will rise again and kick asses !

#RespectList ANTICHRISTUS fysiks Bugsy

Most Common Errors You Can Encounter Every Now and Then
devilicioux is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 06-13-2014 , 10:41   Re: Simple Exp Level Mod
Reply With Quote #5

Removed AMXX plugin. You are not allowed to upload compiled plugin.

As being stated above, this is redundant. Please search before posting.
Unapproved.
__________________
Arkshine is offline
nikolov
Senior Member
Join Date: Feb 2011
Old 06-14-2014 , 07:14   Re: Simple Exp Level Mod
Reply With Quote #6

Nice, but you are not the real author.
https://forums.alliedmods.net/showpo...71&postcount=5
nikolov is offline
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 06-14-2014 , 08:46   Re: Simple Exp Level Mod
Reply With Quote #7

PHP Code:
0,
    
25,
    
50,
    
75,
    
100,
    
125,
    
150,
    
175,
    
200,
    
235,
    
270,
    
310,
    
350,
    
375,
    
400,
    
425,
    
450,
    
485,
    
520,
    
555,
    
600 
I think that you used some tuts for making this. Anyway it's wrong to start for 0. 0 mean that you need 0 xp for first level. Simply remove it, player will anyway start from level 0 and 0 xp.

PHP Code:
format(vaultdata255"%i#%i#%i#"gExp[id], gLvl[id], gSpecs[id]) 
# is not needed, you can simply put a space like: "%i %i %i ".
PHP Code:
    format(vaultdata255"%i#%i#%i#"gExp[id], gLvl[id], gSpecs[id]) 
Same here.

If you do this, you no more need to replace #, so remove
PHP Code:
    replace_all(vaultdata255"#"" "

PHP Code:
gExp[iAtkr] += get_pcvar_num(gCvarKill)
        
        if(
read_data(3))
        {
            
gExp[iAtkr] += get_pcvar_num(gCvarHs)
        } 
This won't work correctly. If you make a head shot you will receive xp for normal kill and xp for hs kill. I think that it should be like this: make a normal kill, receive xp for normal kill ,make a hs, receive xp for a hs.

->

PHP Code:
    if(read_data(3))
    {
        
gExp[iAtkr] += get_pcvar_num(gCvarHs)
    }
    else 
gExp[iAtkr] += get_pcvar_num(gCvarKill
What are you doing in TwinEvent is silly, use get_player and loop all players. Also get_players can get players matching with passed team. Same in CwinEvent.

In HamSpawnEvent(id) you have to check if player is alive.
HamletEagle is offline
Flick3rR
Veteran Member
Join Date: Feb 2014
Location: Bulgaria, Stara Zagora
Old 06-14-2014 , 09:33   Re: Simple Exp Level Mod
Reply With Quote #8

Quote:
Originally Posted by HamletEagle View Post
PHP Code:
    if(read_data(3))
    {
        
gExp[iAtkr] += get_pcvar_num(gCvarHs)
    }
    else 
gExp[iAtkr] += get_pcvar_num(gCvarKill
Or just
PHP Code:
gExp[iAtkr] += read_data(3) ? get_pcvar_num(gCvarHs) : get_pcvar_num(gCvarKill
Not important, but I like this style and felt some need to post this Nothing personal, if someone thinks something sort of. Not saying you are not right, HamletEagle!
__________________
Flick3rR is offline
Send a message via Skype™ to Flick3rR
ArabicMan
Veteran Member
Join Date: Feb 2014
Location: مصر
Old 06-14-2014 , 10:30   Re: Simple Exp Level Mod
Reply With Quote #9

I'll try it.
ArabicMan is offline
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 06-15-2014 , 10:20   Re: Simple Exp Level Mod
Reply With Quote #10

You are right Flick3rR, but I just fixed his code, didn't think to make it looks better. Anyway this has to be totally rewritted.
HamletEagle is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:58.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode