View Single Post
  #3  
Old 07-14-2013, 01:37 AM
baseman101 baseman101 is offline
Scripter
baseman101's Avatar
Join Date: Nov 2012
Location: Purcellville, VA
Posts: 76
baseman101 will become famous soon enough
Quote:
Originally Posted by fowlplay4 View Post
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));
  }

Ah, (facepalm), thanks!
Reply With Quote