Xp hquestion
Moderator: Forum Moderator
-
- WC3Mods Donor
- Posts: 60
- Joined: Wed Aug 03, 2005 12:22 pm
- Location: Highland Heights, KY
- Contact:
Xp hquestion
Okay, guys here is my question. Where can I find a program, that will let me enter in someone's steam id, to give them a certain level, with out me actually going in game to give them xp. I havent read your forums on your other webpage yet, I just figured that I would check here. if you can let me know that would be sweet. If you dont know what I am asking, basically I have people donate, and I want to just ask for their steam id, and then go and enter in their steam id to a .cfg file I am guessing, and then when they join, they get like 1 xp and then the next time they join/next map they have like 53000 xp or level 10 in the race
- Lazarus Long
- Lead PITA SOB
- Posts: 618
- Joined: Tue Jul 05, 2005 9:24 pm
Highfighter:
Humm, I see several ways to do it, depends on how you are storing XP and your skill with a web or automation script, but basically it's a DIY thing.
Regards,
Humm, I see several ways to do it, depends on how you are storing XP and your skill with a web or automation script, but basically it's a DIY thing.
Regards,
Lazarus
- Before asking anything: Search!
- Want help with Warcraft 3 FT? Ask it the right way!
- What to download to get Warcraft 3 FT running? Check the list of files!
- Need more help? Check the simple Mini-HOWTO series!
-
- WC3Mods Donor
- Posts: 60
- Joined: Wed Aug 03, 2005 12:22 pm
- Location: Highland Heights, KY
- Contact:
-
- WC3Mods Donor
- Posts: 60
- Joined: Wed Aug 03, 2005 12:22 pm
- Location: Highland Heights, KY
- Contact:
STEAM_0:1:7094802_1
Steam ID and race...1=undead?
STEAM_0:1:7094802
Steam id again
108144
amount of xp?
1 3 3 3 1
I have no idea
Highfighter2003
user name last used to save it?
if you could correct me and break that down for me that would be great.
sorry for the double post though I was in edit mode
Steam ID and race...1=undead?
STEAM_0:1:7094802
Steam id again
108144
amount of xp?
1 3 3 3 1
I have no idea
Highfighter2003
user name last used to save it?
if you could correct me and break that down for me that would be great.
sorry for the double post though I was in edit mode
www.elitegamingcorp.com - - Up and growing counter-strike community.
- Lazarus Long
- Lead PITA SOB
- Posts: 618
- Joined: Tue Jul 05, 2005 9:24 pm
Hello, Highfighter:
The vault.ini line structure depends on how you are saving XP, by Steam ID, IP address or name, but you can find how it is built in "addons/amxmodx/scripting/war3ft/XP.inl" around line 301.
Regards,
The vault.ini line structure depends on how you are saving XP, by Steam ID, IP address or name, but you can find how it is built in "addons/amxmodx/scripting/war3ft/XP.inl" around line 301.
Regards,
Lazarus
- Before asking anything: Search!
- Want help with Warcraft 3 FT? Ask it the right way!
- What to download to get Warcraft 3 FT running? Check the list of files!
- Need more help? Check the simple Mini-HOWTO series!
-
- WC3Mods Donor
- Posts: 60
- Joined: Wed Aug 03, 2005 12:22 pm
- Location: Highland Heights, KY
- Contact:
what kind of program does it take to open the file? because I dont want to open it in not pad and mess something up...
www.elitegamingcorp.com - - Up and growing counter-strike community.
-
- WC3Mods Donor
- Posts: 60
- Joined: Wed Aug 03, 2005 12:22 pm
- Location: Highland Heights, KY
- Contact:
Okay, lets see if I can upload something here.
There ya go, thats the file, not exactly sure what I am looking for, but as far I can tell it is saving by client ID
There ya go, thats the file, not exactly sure what I am looking for, but as far I can tell it is saving by client ID
- Attachments
-
- XP.inl
- (19.8 KiB) Downloaded 2093 times
www.elitegamingcorp.com - - Up and growing counter-strike community.
Code: Select all
else{ // Save it to a vault :)
new temp[128], string[512]
get_time("%m %d %H %M",timet,31)
get_user_authid(id,playerid,31)
get_user_name(id,playername,31)
get_user_ip(id,ip,31)
format(string,511,"%s %d %d %d %d %d %d %s %s %s",playerid,p_data[id][P_XP],p_data[id][P_RACE],p_data[id][P_SKILL1],p_data[id][P_SKILL2],p_data[id][P_SKILL3],p_data[id][P_ULTIMATE],playername,ip,timet)
if(iCvar[FT_SAVEBY]==0) // Save by steam ID
format(temp,127,"%s_%d",playerid,p_data[id][P_RACE])
else if(iCvar[FT_SAVEBY]==1) // Save by IP address
format(temp,127,"%s_%d",ip,p_data[id][P_RACE])
else if(iCvar[FT_SAVEBY]==2) // Save by Player name
format(temp,127,"%s_%d",playername,p_data[id][P_RACE])
set_vaultdata(temp,string)
}
-
- WC3Mods Donor
- Posts: 60
- Joined: Wed Aug 03, 2005 12:22 pm
- Location: Highland Heights, KY
- Contact:
hmmmm. can you explain this now please?
www.elitegamingcorp.com - - Up and growing counter-strike community.
- ferret
- Lead Warcraft 3 XP Developer
- Posts: 422
- Joined: Wed Jul 06, 2005 8:20 am
- Location: Atlanta, GA
- Contact:
STEAM_0:1:7094802_1 - Vault key, used to retrieve dataHighfighter wrote:STEAM_0:1:7094802_1 STEAM_0:1:7094802 108144 1 3 3 3 1 Highfighter2003 07 31 01 13
STEAM_0:1:7094802 - Steamid
108144 - XP
1 - Race
3 3 3 1 - Skills. 1st skill, 2nd skill, 3rd skill level, and then ultimate.
Highfighter2003 - Name
07 31 01 13 - Time stamp
-< www.gamehavoc.com >-
Lazarus Long: And I know you didn't because the Server Files are version 2.2.6 and the file you posted is version 2.2.5, so do as I told you above and don't ever lie to me again or help is gone!
Lazarus Long: And I know you didn't because the Server Files are version 2.2.6 and the file you posted is version 2.2.5, so do as I told you above and don't ever lie to me again or help is gone!
-
- WC3Mods Donor
- Posts: 60
- Joined: Wed Aug 03, 2005 12:22 pm
- Location: Highland Heights, KY
- Contact:
Thanks ferret
im not the brightest person..

www.elitegamingcorp.com - - Up and growing counter-strike community.