rename global variables

 
is there a script/tool that can rename  all global varibles at once
 
Hannah Wanjiku Kimari -: is there a script/tool that can rename  all global varibles at once

Global Terminal Variables cannot be renamed. A new variable has to be created and the old one deleted.

Consider hiring someone in the Freelance section to code such a script for you.

 
Hannah Wanjiku Kimari -:
is there a script/tool that can rename  all global varibles at once
double copy=0;
if(GlobalVariableCheck("current_var_name")==true
copy = GlobalVariableGet("current_var_name");

if(copy>0){
GlobalVariableDel( "current_var_name");
GlobalVariableSet("new_var_name",copy); 
}

this is how you rename

current_var_name = your varibale name



new_var_name = new name which you want to rename