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

HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)


Post New Thread Reply   
 
Thread Tools Display Modes
quilhos
Veteran Member
Join Date: Jun 2010
Old 11-02-2012 , 04:20   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #451

Just delete the nvault file,
cstrike>addons>amxmodx>data>vault
__________________
ELO RATING SYSTEM - SQL [COMPLETE]
Quote:
Originally Posted by Liverwiz View Post
DDDRRRRAAAAMMMMAAAAA!!!???

Put this shit on pause while i go get some popcorn!!
quilhos is offline
jonnzus
Epic Member
Join Date: Oct 2010
Location: Finland
Old 12-26-2012 , 02:41   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #452

Does anyone else have problems with xp saving in 0.0.3?
__________________
Quote:
367. Everyone's copyright will be broken. No exceptions.
jonnzus is offline
Risodlare
New Member
Join Date: Dec 2012
Old 12-29-2012 , 06:51   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #453

i have this and bollnas course maker on my server,but im only getting xp 1 time, nothing happens next round when im standing on it, i have to restart my server,then walk on the xpblock 1 time, then i still cant get more xp, so only 1 time untill i change map or rr server? why is it like that? havent changed anything in the code what so ever
Risodlare is offline
MajorProblem
Junior Member
Join Date: Dec 2012
Location: Denmark
Old 01-05-2013 , 09:38   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #454

im sorry, how do i define how much % each lvl of - for example - 'Respawn' should have?...
1st lvl gets you 5%... 2nd lvl gives you 11 and so on...
__________________
MajorProblem is offline
Send a message via Skype™ to MajorProblem
striker07
Veteran Member
Join Date: Mar 2012
Location: Solar System/Earth/Belgi
Old 01-28-2013 , 11:16   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #455

I just made an extension for this plugin, a function that will count the players total spend xp, stored in a variable. if you add the variable with the players xp (g_xp[33]) you know what your total amount of exp is that you have.

I havent tested it, i was hoping you could take a look at it first, I'm not 100% certain that it is free of faults.
I made it with the 0.0.1 Version of you're plugin.
There are many directions you can go based on this.

pastebin version
AM version
__________________

Working on:
[CSGO/CSS] Mmorpg - an extensive XP/level modulair platform
Progress: [♣♣♣♣♣♣♣|♣♣♣]

Last edited by striker07; 01-28-2013 at 19:04.
striker07 is offline
striker07
Veteran Member
Join Date: Mar 2012
Location: Solar System/Earth/Belgi
Old 01-28-2013 , 19:50   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #456

I've tryed some diffrent methods becous my calculations is wrong, but stil after this underneath method the endresult is diffrent then my own calculations. does anyone know what i'm missing?
tryed with and without the -1's but still the results are not completely accurate

PHP Code:
for( new 0Grenadesi++ )
    {
        
//g_iXpNades[i] = g_nade_level[client][i] * g_nade_first_xp[i];        
        
g_iXpNades[i] = g_nade_first_xp[i] * (<< (g_nade_level[client][i]-1));
    }
    
    for( new 
CsTeams:CS_TEAM_T<= CS_TEAM_CTi++ )
    {
        
//g_iXpArmor[i] = g_armor_level[client][i] * g_armor_first_xp[i];        
        
g_iXpArmor[i] = g_armor_first_xp[i] * (<< (g_armor_level[client][i]-1));
    }
    
    for( new 
CsTeams:CS_TEAM_T<= CS_TEAM_CTi++ )
    {
        
//g_iXpRespawn[i] = g_respawn_level[client][i] * g_respawn_first_xp[i];        
        
g_iXpRespawn[i] = g_respawn_first_xp[i] * (<< (g_respawn_level[client][i]-1));
    }
    
    for( new 
CsTeams:CS_TEAM_T<= CS_TEAM_CTi++ )
    {
        
//g_iXpHealth[i] = g_health_level[client][i] * g_health_first_xp[i];        
        
g_iXpHealth[i] = g_health_first_xp[i] * (<< (g_health_level[client][i]-1));
    }
    
    for( new 
CsTeams:CS_TEAM_T<= CS_TEAM_CTi++ )
    {        
        
g_iXpNoFall[i] = g_nofall_first_xp[i] * (<< (g_nofall_level[client][i] -1));
    } 
__________________

Working on:
[CSGO/CSS] Mmorpg - an extensive XP/level modulair platform
Progress: [♣♣♣♣♣♣♣|♣♣♣]
striker07 is offline
Ejziponken
AlliedModders Donor
Join Date: Apr 2008
Old 02-16-2013 , 19:48   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #457

Host_Error: CL_EntityNum: 285 is an invalid number, cl.max_edicts is 285

HNS XP 0.0.1 with new CS updates. :/
Ejziponken is offline
SMAKOPZ
New Member
Join Date: Feb 2013
Old 02-18-2013 , 08:51   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #458

The mod xp shouldnt have guns and only life,grenades,shouldnt they?
SMAKOPZ is offline
striker07
Veteran Member
Join Date: Mar 2012
Location: Solar System/Earth/Belgi
Old 03-23-2013 , 15:08   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #459

HNS Extention plugin: Buy Xp.
Buyxp Extention plugin for HideNSeek XP Mod v0.0.3 Beta

Cvars:
buyxp_8k 10
buyxp_16k 25

Client Commands:
buyxp or /buyxp in chat



ps: Exolent, you should put this plugin in the plugin extention list of youre release post
Attached Files
File Type: sma Get Plugin or Get Source (hnsxp-buyxp.sma - 500 views - 1.3 KB)
__________________

Working on:
[CSGO/CSS] Mmorpg - an extensive XP/level modulair platform
Progress: [♣♣♣♣♣♣♣|♣♣♣]
striker07 is offline
jingojang
Senior Member
Join Date: Feb 2010
Location: The Moon
Old 03-27-2013 , 04:14   Re: HideNSeek XP Mod v0.0.1 (v0.0.3 in beta with v0.0.4 in progress)
Reply With Quote #460

Why is my weapon chance not working with this hidenseek plugin?

https://forums.alliedmods.net/showthread.php?t=211628

Thanks
jingojang is offline
Reply



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 14:50.


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