4Botters


 
Go Back   4Botters" I am A Bad Ass Botter " > Online Games > Conquer Online Sections > Conquer Bots > Conquer Private Servers

Conquer Private Servers Post guides , scripts , advertise , anything related to Conquer Private Servers !


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-08-2010, 09:22 PM
Beginner
 
Join Date: Feb 2010
Posts: 65
Thanks: 32
Thanked 3 Times in 3 Posts
Default The correct way to use the Penty Amulet

From most of the releases, or sources of the Penty Amulet... Its always bugging.. Like it works if ur pkp is 30+ but if its below 30... Then you use it, and your pkps SHOOT up to like 50k.. For no reason.. Well This is how to fix it...
Search for:

Code:
case 723727:
And replace that whole case with:

Code:
                    #region Pentenice amulet
                    case 723727:
                        {
                            if (PKPoints > 29)
                            {
                                PKPoints -= 30;
                                RemoveItem(I);
                                MyClient.LocalMessage(2000, "You have used the pk amulet!!");
                            }
                            else
                                MyClient.LocalMessage(2000, "You do not have 30 PK Points +");
                            break;
                        }

                    #endregion
Thank me, ONLY if I helped
Reply With Quote
The Following User Says Thank You to 2supertao For This Useful Post:
newmind2 (02-08-2010)
Google Adsense

  #2 (permalink)  
Old 02-08-2010, 09:24 PM
killersub's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 180
Thanks: 26
Thanked 47 Times in 22 Posts
Default Re: The correct way to use the Penty Amulet

hmmm...I don't think this is really necessary since My pent. ammy works fine the way I coded it lol...but nice realease anyways for the newbies!
Reply With Quote
  #3 (permalink)  
Old 02-08-2010, 09:55 PM
Beginner
 
Join Date: Feb 2010
Posts: 65
Thanks: 32
Thanked 3 Times in 3 Posts
Default Re: The correct way to use the Penty Amulet

Yup for the nubs.. but its just mostly a point out cause no one notices probably.. It was a simple code.. Useless but not to noobabass
Reply With Quote
  #4 (permalink)  
Old 02-08-2010, 10:00 PM
ramix's Avatar
A Botter
 
Join Date: Nov 2009
Posts: 235
Thanks: 2
Thanked 33 Times in 19 Posts
Default Re: The correct way to use the Penty Amulet

first this is wrong

Quote:
#region Pentenice amulet
case 723727:
{
if (PKPoints > 29)
{
PKPoints -= 30;
RemoveItem(I);
MyClient.LocalMessage(2000, "You have used the pk amulet!!");
}
else
MyClient.LocalMessage(2000, "You do not have 30 PK Points +");
break;
}

#endregion
you need to put...

Quote:
#region Pentenice amulet
case 723727:
{
if (PKPoints > 30)
{
PKPoints -= 30;
RemoveItem(I);
MyClient.LocalMessage(2000, "You have used the pk amulet!!");
}
else
MyClient.LocalMessage(2000, "You do not have 30 PK Points +");
break;
}

#endregion
test first and post -.-
Reply With Quote
  #5 (permalink)  
Old 02-08-2010, 10:20 PM
killersub's Avatar
A Botter
 
Join Date: Dec 2009
Posts: 180
Thanks: 26
Thanked 47 Times in 22 Posts
Default Re: The correct way to use the Penty Amulet

Quote:
Originally Posted by ramix View Post
first this is wrong



you need to put...



test first and post -.-
leave him lol...he just modified it for his own use and purpose especifically for newbs finding codes such as dis -.-...
Reply With Quote
  #6 (permalink)  
Old 02-08-2010, 10:35 PM
Beginner
 
Join Date: Feb 2010
Posts: 65
Thanks: 32
Thanked 3 Times in 3 Posts
Default Re: The correct way to use the Penty Amulet

Actually your wrong.... It ins't > 30... Its 29.. Because if do 30.. U have to have 31 PKP + to to use it.. if u do 29.. it makes it so u can use it at 30 PKP + so go ahead and try it your way...
Reply With Quote
  #7 (permalink)  
Old 02-09-2010, 07:55 AM
ramix's Avatar
A Botter
 
Join Date: Nov 2009
Posts: 235
Thanks: 2
Thanked 33 Times in 19 Posts
Default Re: The correct way to use the Penty Amulet

do like this looo -.-

if have >= 30

Quote:
Quote:
#region Pentenice amulet
case 723727:
{
if (PKPoints >= 30)
{
PKPoints -= 30;
RemoveItem(I);
MyClient.LocalMessage(2000, "You have used the pk amulet!!");
}
else
MyClient.LocalMessage(2000, "You do not have 30 PK Points +");
break;
}

#endregion
Reply With Quote
  #8 (permalink)  
Old 02-09-2010, 11:59 AM
Bad Ass Botta!
 
Join Date: Sep 2009
Posts: 364
Thanks: 70
Thanked 16 Times in 16 Posts
Default Re: The correct way to use the Penty Amulet

if (PKPoints > 30) will only works if you have more then 31 PKPoints, so, you will still having PKPOINTS (31-30=1).

if (PKPoints > 29) or if (PKPoints >= 30) will works if you have more then 30 PKPoints, so, you can get all your PKpoints erased.

Use it as your WISH.
Reply With Quote
Reply

Bookmarks

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


Translate This Page


All times are GMT. The time now is 11:51 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.