View Single Post
  #2  
Old 07-14-2013, 12:06 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Don't use this.x for starters, that's a reserved variable for NPCs. Use pos or positions instead.

PHP Code:
function onCreated() {
  
temp.str.loadstring("logs/testlog.txt");
  
temp.spos temp.str.pos("Testing123");
  if (
temp.spos >= 0) {
    echo(
"found string");
    echo(
temp.str.substring(temp.spos 100temp.spos 100));
  }
  for (
temp.spostemp.str.positions("Testing123")) {
    echo(
temp.str.substring(temp.spos 100temp.spos 100));
  }

__________________
Quote:
Reply With Quote