Yes, it really wont work the way you are expecting.
Let me tell you what you added.
set .@stpoint, 300; (actually you added >300) -- What it does: this line here gives the .@stpoint a value of 300 every time you use it in other parts of your script. Use: easy script set up. Editing this part will reflect in the whole script.
Use like:
set .@Save,5000; // Zeny required to save a build ---- setting
if (Zeny<.@Save) { message strcharinfo(0),"Not enough Zeny."; close; } ----- use in script
if (Zeny<5000) { message strcharinfo(0),"Not enough Zeny."; close; } ------ this is how the script is read based on the setting
For the script to work the way you want, you might need a limit on your sql table where the build is saved that will return an error. Or maybe a per stat check before saving builds. You can go ask for that in scripting request maybe.