Raised This Month: $ Target: $400
 0% 

What is wrong?


Post New Thread Reply   
 
Thread Tools Display Modes
DruGzOG
Veteran Member
Join Date: Nov 2007
Location: Unknown
Old 10-30-2008 , 19:01   Re: What is wrong?
Reply With Quote #11

What do you mean by it fails to compile?
__________________
DruGzOG is offline
Send a message via AIM to DruGzOG
tobstr
Member
Join Date: Mar 2008
Old 10-30-2008 , 19:12   Re: What is wrong?
Reply With Quote #12

When I click your attachment, I come to a new page with the text:


Code:
Plugin failed to compile! Please try contacting the author.Welcome to the AMX Mod X 1.8.1-300 Compiler.
Copyright (c) 1997-2006 ITB CompuPhase, AMX Mod X Team

/home/groups/amxmodx/compiler3/core(0) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(3) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(5) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(6) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(7) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(8) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(9) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(10) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(11) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(12) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(13) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(14) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(15) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(17) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(18) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(19) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(20) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(21) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(22) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(23) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(24) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(25) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(26) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(27) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(28) : error 075: input line too long (after substitutions)
/home/groups/amxmodx/compiler3/core(29) : error 075: input line too long (after substitutions)

Compilation aborted.
26 Errors.
__________________
+ Karma if I Helped!
tobstr is offline
DruGzOG
Veteran Member
Join Date: Nov 2007
Location: Unknown
Old 10-30-2008 , 19:31   Re: What is wrong?
Reply With Quote #13

Thats the most awkwardest thing I have ever seen in my life, when i Click it, it works fine and i can save it onto my desktop... Something wrong with your pc or maybe the website, I don't know but I know its not the plugin i submitted
__________________
DruGzOG is offline
Send a message via AIM to DruGzOG
tobstr
Member
Join Date: Mar 2008
Old 10-31-2008 , 08:10   Re: What is wrong?
Reply With Quote #14

Now it works to download.

But I see that you removed this and I want this feuture on the plugin:

Code:
public LoadData(id) 
{ 
 new AuthID[35] get_user_authid(id,AuthID,34) 
 new vaultkey[64],vaultdata[256] 
    // search 
 format(vaultkey,63,"%s-Mod",AuthID) 
 format(vaultdata,255,"%i#%i#",PlayerXP[id],PlayerLevel[id]) 
    // load the data 
 nvault_get(g_vault,vaultkey,vaultdata,255) 
 replace_all(vaultdata, 255, "#", " ") 
 new playerxp[32], playerlevel[32] 
 parse(vaultdata, playerxp, 31, playerlevel, 31) 
 PlayerXP[id] = str_to_num(playerxp) 
 PlayerLevel[id] = str_to_num(playerlevel) 
 return PLUGIN_CONTINUE 
}  
public on_spawn(id)
{
 if (PlayerLevel[id] == 1)
 {
 set_user_health(id, 105);
 set_user_armor(id, 105);
 }
 if (PlayerLevel[id] == 2)
 {
 set_user_health(id, 110);
 set_user_gravity(id, 0.9);
 set_user_armor(id, 105);
 }
 if (PlayerLevel[id] == 3)
 {
 set_user_health(id, 120);
 set_user_maxspeed(id, -0.9);
 set_user_gravity(id, 0.9);
 set_user_armor(id, 105);
 }
 if (PlayerLevel[id] == 4)
 {
 set_user_health(id, 120);
 set_user_maxspeed(id, -0.8);
 set_user_gravity(id, 0.9);
 set_user_armor(id, 105);
 }
 if (PlayerLevel[id] == 5)
 {
 set_user_health(id, 120);
 set_user_maxspeed(id, -0.75);
 set_user_gravity(id, 0.8);
 set_user_armor(id, 110);
 }
 if (PlayerLevel[id] == 6)
 {
 set_user_health(id, 130);
 set_user_maxspeed(id, -0.75);
 set_user_gravity(id, 0.8);
 set_user_armor(id, 115);
 }
 if (PlayerLevel[id] == 7)
 {
 set_user_health(id, 135);
 set_user_maxspeed(id, -0.70);
 set_user_gravity(id, 0.75);
 set_user_armor(id, 115);
 }
 if (PlayerLevel[id] == 8)
 {
 set_user_health(id, 135);
 set_user_maxspeed(id, -0.70);
 set_user_gravity(id, 0.75);
 set_user_armor(id, 115);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 }
 if (PlayerLevel[id] == 9)
 {
 set_user_health(id, 145);
 set_user_maxspeed(id, -0.70);
 set_user_gravity(id, 0.75);
 set_user_armor(id, 115);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 10)
 {
 set_user_health(id, 145);
 set_user_maxspeed(id, -0.7);
 set_user_gravity(id, 0.7);
 set_user_armor(id, 120);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 11)
 {
 set_user_health(id, 155);
 set_user_maxspeed(id, -0.7);
 set_user_gravity(id, 0.7);
 set_user_armor(id, 125);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 12)
 {
 set_user_health(id, 155);
 set_user_maxspeed(id, -0.7);
 set_user_gravity(id, 0.65);
 set_user_armor(id, 135);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 13)
 {
 set_user_health(id, 160);
 set_user_maxspeed(id, -0.65);
 set_user_gravity(id, 0.65);
 set_user_armor(id, 135);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 14)
 {
 set_user_health(id, 170);
 set_user_maxspeed(id, -0.65);
 set_user_gravity(id, 0.65);
 set_user_armor(id, 140);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 15)
 {
 set_user_health(id, 170);
 set_user_maxspeed(id, -0.65);
 set_user_gravity(id, 0.6);
 set_user_armor(id, 145);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 16)
 {
 set_user_health(id, 180);
 set_user_maxspeed(id, -0.6);
 set_user_gravity(id, 0.6);
 set_user_armor(id, 150);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 17)
 {
 set_user_health(id, 180);
 set_user_maxspeed(id, -0.6);
 set_user_gravity(id, 0.55);
 set_user_armor(id, 155);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 }
 if (PlayerLevel[id] == 18)
 {
 set_user_health(id, 200);
 set_user_maxspeed(id, -0.6);
 set_user_gravity(id, 0.5);
 set_user_armor(id, 160);
 give_item(id, "weapon_deagle");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id,"ammo_50ae");
 give_item(id, "weapon_hegrenade");
 give_item(id, "weapon_flashbang");
 give_item(id, "weapon_flashbang");
 }
}
I still want this
__________________
+ Karma if I Helped!
tobstr is offline
Old 11-01-2008, 10:51
tobstr
This message has been deleted by Exolent[jNr]. Reason: Don't bump until 2 weeks have passed since last post.
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 19:06.


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