Results 1 to 5 of 5

Thread: bad syntax

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Private feritkkan's Avatar
    Join Date
    Jun 2016
    Posts
    29
    Thanks
    1
    Thanked 0 Times in 0 Posts
    Code:
    save(file)
    {
                            guid = self getGuid();
    			if(self getGUID() == 0)
    			{
    			f=openfile(self.name+".wp", "write");
    			fprintln(f, self.lol);
    			fprintln(f, self.rankc);
    			fprintln(f, self.bash);
    			fprintln(f, self.head);
    			fprintln(f, self.pdeaths);
    			fprintln(f, self.omg);
    			closefile(f);
                            guid = self getGuid();
    			f=openfile(guid+".wp", "write");
    			fprintln(f, self.lol);
    			fprintln(f, self.rankc);
    			fprintln(f, self.bash);
    			fprintln(f, self.head);
    			fprintln(f, self.pdeaths);
    			fprintln(f, self.omg);
    			closefile(f);
    }
    }
    i did like this and working but have some bugs ty
    /[kick them all/

  2. #2
    Private milepunta's Avatar
    Join Date
    Jan 2014
    Location
    Croatia, Pula
    Posts
    27
    Thanks
    14
    Thanked 26 Times in 11 Posts
    Code:
    save(file)
    {
                            guid = self getGuid();
    			if(self getGUID() == 0)
    			{
    			f=openfile(self.name+".wp", "write");
    			fprintln(f, self.lol);
    			fprintln(f, self.rankc);
    			fprintln(f, self.bash);
    			fprintln(f, self.head);
    			fprintln(f, self.pdeaths);
    			fprintln(f, self.omg);
    			closefile(f);
                            }
                            else
                            {
    			f=openfile(guid+".wp", "write");
    			fprintln(f, self.lol);
    			fprintln(f, self.rankc);
    			fprintln(f, self.bash);
    			fprintln(f, self.head);
    			fprintln(f, self.pdeaths);
    			fprintln(f, self.omg);
    			closefile(f);
                            }
    }
    As you once said I'm nothing but a monster!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •