Hello i'm a newbie i want to ask if it possible to change the "kafra credit point" message that appear on the chat?
"You don't have enough <name> "
prontera,166,170,3 trader Dealer 10297,{
OnInit:
tradertype(NST_CUSTOM);
sellitem Poring_Card,1;
end;
// Here you configure the item you will need to purchase
OnCountFunds:
setcurrency(#KAFRAPOINTS);
end;
// Pays the value in bronze coins
OnPayFunds:
if( #KAFRAPOINTS < @points )
end;
#KAFRAPOINTS -= @price;
purchaseok();
end;
}
This is the script i use maybe modifying NST_CUstom but dont know where to find...
Hello i'm a newbie i want to ask if it possible to change the "kafra credit point" message that appear on the chat?
"You don't have enough <name> "
prontera,166,170,3 trader Dealer 10297,{ OnInit: tradertype(NST_CUSTOM); sellitem Poring_Card,1; end; // Here you configure the item you will need to purchase OnCountFunds: setcurrency(#KAFRAPOINTS); end; // Pays the value in bronze coins OnPayFunds: if( #KAFRAPOINTS < @points ) end; #KAFRAPOINTS -= @price; purchaseok(); end; }
This is the script i use maybe modifying NST_CUstom but dont know where to find...
Edited by herojiShare this post
Link to post
Share on other sites