Jump to content
  • 0

Please Help How to Remove This in V4p Shop


whine06

Question


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  29
  • Reputation:   1
  • Joined:  02/26/12
  • Last Seen:  

How to remove Can Buy using FreeCash at V4p Shop using Points

5alvmt.png

this is my v4p shop


prontera,144,186,5 script VotePoints Trader 893,{

setarray @vote_item[0],            512, 512; // Item ID
setarray @vote_item_count[0],    1, 1; // Item Count wich will be given
setarray @vote_cost[0],            1, 1; // Cost in Vote Points
set @min_vote, 0; // minimum count on Vote Points to see the Item List
set @npcname$,"[^ff0000Vote Point Trader^000000]";

query_sql ("SELECT `points` FROM `cp_vote` WHERE `account_id` = ('"+getcharid(3)+"')", @vote);

mes @npcname$;
mes "You have ^ff0000"+@vote+"^000000 Vote Points!";
if( @vote < @min_vote ) {
mes "^ff0000You will need "+@min_vote+" or more Vote Points to trade them with me!^000000";
close;
}
if (select("Trade my Points!","Cancel~") == 2) 
close;

next;
mes "[^ff0000List^000000]";
mes "^0000ffItem^000000 = ^00aa00Cost^000000";
for( set .@i, 0; .@i < getarraysize(@vote_item); set .@i, .@i + 1 ) {
mes "^0000ff"+@vote_item_count[.@i]+"x "+getitemname(@vote_item[.@i])+"^000000 = ^00aa00"+@vote_cost[.@i]+"^000000";
if( .@i < 1 )
set .@menu$, getitemname(@vote_item[.@i]);
else
set .@menu$, .@menu$+":"+getitemname(@vote_item[.@i]);
}

next;
select(.@menu$);
set @choice, @menu - 1;

mes @npcname$;
if( @vote_cost[@choice] > @vote ) {
mes "^ff0000You dont have enought Vote Point for "+@vote_item_count[@choice]+"x '"+getitemname(@vote_item[@choice])+"' :/^000000";
close;
}
mes "Are u realy sure to trade "+@vote_item_count[@choice]+"x '^ff0000"+getitemname(@vote_item[@choice])+"^000000' for ^00aa00"+@vote_cost[@choice]+"^000000 Vote Points?";
if(select("No! Cancel!:Yes, Trade me!") == 1 ) {
mes "^ff0000Trade was canceled~^000000";
close;
}

set .@new, @vote - @vote_cost[@choice];
if( .@new < 0 ) // safty first..
set .@new, 0;
query_sql("UPDATE `voting_points` SET `points` = '"+.@new+"' WHERE `account_id` = ('"+getcharid(3)+"')");
getitem @vote_item[@choice], @vote_item_count[@choice];
mes "^00aa00Trade was Successfull  Hope to see u again =)!^000000";
close;
}

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  139
  • Reputation:   10
  • Joined:  11/10/11
  • Last Seen:  

I dont think that feature can be removed by script. IMO you can remove it by hexing the client or edit the picture in texture files deleting that part

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  231
  • Reputation:   9
  • Joined:  12/16/11
  • Last Seen:  

Anyone knows how to remove that thing? I really need it too.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  29
  • Reputation:   1
  • Joined:  02/26/12
  • Last Seen:  

i see .. /meh badly i cannot separate my V4p and Hourly point shop :P

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...