You got to learn the basics at least. Even when you want to copy/paste scripts of others. I you don't know how and where to place the correct commands you'll end up frustrated because of errors which you don't understand. And really learning the basics is possible for everyone since there are video tutorials. What else do you want then some guy telling you what to type
About scripts;
I would like to know how to switch between levels without a level door. And how to do it with a passing-out effect?
By the way a script I love myself is when entering an area, the lights go on/off. This is the script for a lamp to go off:
______________________________________________________________________
void CollideLightsOut(string &in asParent, string &in asChild, int alState)
{
SetLampLit("entity name", true, true);
}
void OnStart()
{
AddEntityCollideCallback("Player", "AreaLightsOut", "CollideLightsOut", true, 1);
}