Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/12/24 in Posts

  1. I just realized this function now. It's better if you implement it this way. Below
    1 point
  2. mes "Zeny Balance : ^8b8b8b"+#Zeny+"^000000 z"; change to mes "Zeny Balance : ^8b8b8b"+F_InsertComma(Zeny)+"^000000 z";
    1 point
  3. Im not master or legendary scripter but try this After each function header, make sure to add this: query_sql("SELECT zeny FROM `char` WHERE `char_id` = " + getcharid(0), .@zeny_); and update the Balance section to: "+.@zeny_+" Example: function script 1hs_Shop1 { query_sql("SELECT zeny FROM `char` WHERE `char_id` = " + getcharid(0), .@zeny_); // <---------------------- mes "[ ^FF0000Account Information^000000 ]"; mes "^8b8b8b____________________________^000000"; mes "Name: ^0000FF"+strcharinfo(0)+"^000000"; mes "Zeny Balance : ^8b8b8b"+.@zeny_+"^000000 z"; // <---------------------- callshop "1hs_Shop2",1; end; }
    1 point
×
×
  • Create New...