View Single Post
  #1  
Old 09-16-2007, 01:45 AM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
Copying from a pm.

When I try to copy/paste a script from a pm window or history window, it always seems to break at the < sign of a for() loop.

PHP Code:
function onCreated()
{
  for (
i=0i<10i++)
  {
    echo(
i);
  }

I pmed that to NPC-Server. When I tried to copy it out of history, it came out as

PHP Code:
function onCreated()
    {
      for (
i=0
Reply With Quote