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

Experience Mode [Hide'N'Seek]


Post New Thread Reply   
 
Thread Tools Display Modes
Napoleon_be
Veteran Member
Join Date: Jul 2011
Location: Belgium
Old 05-03-2012 , 12:08   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #11

Any suggestions that i can add to the xp mode?
__________________
Napoleon_be is offline
Send a message via Skype™ to Napoleon_be
bLacK-bLooD
AlliedModders Donor
Join Date: Jun 2008
Old 05-03-2012 , 12:33   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #12

Quote:
Originally Posted by Napoleon_be View Post
Any suggestions that i can add to the xp mode?
I know, not on topic, but finish those awsome achievements

ON : It's working properly right now and it achieves my needs.
__________________
We all live under the same sky but we have different horizons.
bLacK-bLooD is offline
Napoleon_be
Veteran Member
Join Date: Jul 2011
Location: Belgium
Old 05-03-2012 , 13:18   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #13

Quote:
Originally Posted by bLacK-bLooD View Post
I know, not on topic, but finish those awsome achievements

ON : It's working properly right now and it achieves my needs.
I'm currently bored of making the Achievements, i will end it later after some projects i'm going to release.. Alltho, i'm going to make it for sure
__________________
Napoleon_be is offline
Send a message via Skype™ to Napoleon_be
bazhenov93
Veteran Member
Join Date: Oct 2010
Old 05-03-2012 , 14:02   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #14

Why your radar is the same has non-steam CS?
bazhenov93 is offline
<VeCo>
Veteran Member
Join Date: Jul 2009
Location: Bulgaria
Old 05-03-2012 , 14:15   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #15

Quote:
Originally Posted by bazhenov93 View Post
Why your radar is the same has non-steam CS?
Maybe he uses non-translucent radar option.
__________________
<VeCo> is offline
Napoleon_be
Veteran Member
Join Date: Jul 2011
Location: Belgium
Old 05-03-2012 , 14:21   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #16

Quote:
Originally Posted by bazhenov93 View Post
Why your radar is the same has non-steam CS?
OPtions, Advanced or multiplayer options w/e > radar options > transparant or Solid.
__________________
Napoleon_be is offline
Send a message via Skype™ to Napoleon_be
bazhenov93
Veteran Member
Join Date: Oct 2010
Old 05-03-2012 , 14:29   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #17

oki,.
bazhenov93 is offline
TeddiBer
Senior Member
Join Date: Oct 2011
Old 05-04-2012 , 05:16   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #18

maby u can add a /xptop

that will show the top 15 on the server that gut the biggest xp.
TeddiBer is offline
Larcyn
Senior Member
Join Date: Oct 2010
Old 05-04-2012 , 07:57   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #19

Save with nVault and add all save data into the same string.

You can easily add the code below
PHP Code:
public SaveGrenade(id) {
    new 
SteamID[32]
    
get_user_authid(idSteamIDcharsmax(SteamID))
    
    new 
vaultkey[64], vaultdata[256]
    
    
format(vaultkeycharsmax(vaultkey), "%s-Grenades"SteamID)
    
format(vaultdatacharsmax(vaultdata), "%i#%i#"iFlashBang[id], iSmoke[id])
    
nvault_set(gVaultvaultkeyvaultdata)
    
    return 
PLUGIN_CONTINUE
}

public 
GetGrenade(id) {
    new 
SteamID[32]
    
get_user_authid(idSteamIDcharsmax(SteamID))
    
    new 
vaultkey[64], vaultdata[256]
    
    
format(vaultkeycharsmax(vaultkey), "%s-Grenades"SteamID)
    
format(vaultdatacharsmax(vaultdata), "%i#%i#"iFlashBang[id], iSmoke[id])
    
nvault_get(gVaultvaultkeyvaultdatacharsmax(vaultdata))
    
    
replace_all(vaultdatacharsmax(vaultdata), "#"" ")
    
    new 
Smoke[32], Flash[32]
    
    
parse(vaultdataSmokecharsmax(Smoke), Flashcharsmax(Flash))
    
    
iSmoke[id] = str_to_num(Smoke)
    
iFlashBang[id] = str_to_num(Flash)
    
    return 
PLUGIN_CONTINUE

to
PHP Code:
public SaveData(id)
{
    new 
SteamID[32]
    
get_user_authid(idSteamIDcharsmax(SteamID))
    
    new 
vaultkey[64], vaultdata[256]
    
    
format(vaultkeycharsmax(vaultkey), "%s-XPMODE"SteamID)
    
format(vaultdatacharsmax(vaultdata), "%i#%i#"iPlayerXP[id], iPlayerLevel[id])
    
nvault_set(gVaultvaultkeyvaultdata)
    return 
PLUGIN_CONTINUE
}
public 
LoadData(id)
{
    new 
SteamID[32]
    
get_user_authid(idSteamIDcharsmax(SteamID))
    
    new 
vaultkey[64], vaultdata[256]
    
    
format(vaultkeycharsmax(vaultkey), "%s-XPMODE"SteamID)
    
format(vaultdatacharsmax(vaultdata), "%i#%i#"iPlayerXP[id], iPlayerLevel[id])
    
nvault_get(gVaultvaultkeyvaultdatacharsmax(vaultdata))
    
    
replace_all(vaultdatacharsmax(vaultdata), "#"" ")
    
    new 
xp[32], level[32]
    
    
parse(vaultdataxpcharsmax(xp), levelcharsmax(level))
    
    
iPlayerXP[id] = str_to_num(xp)
    
iPlayerLevel[id] = str_to_num(level)
    
    return 
PLUGIN_CONTINUE

__________________

Taking private requests, PM me for information.
Selling HideNSeek & Jailbreak plugins.

Selling Achievement API System (PHP &
MySQL / nVault)
Larcyn is offline
Napoleon_be
Veteran Member
Join Date: Jul 2011
Location: Belgium
Old 05-04-2012 , 20:32   Re: Experience Mode [Hide'N'Seek]
Reply With Quote #20

Update:

- Added 5 more levels
- Decreased Experience needed for a level since it's hard to get to level 30. This will go a bit faster but still it will take a long time, which makes it funny to play
__________________
Napoleon_be is offline
Send a message via Skype™ to Napoleon_be
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 13:11.


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