Post reply

Name:
Email:
Subject:
Message icon:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Vector
« on: March 02, 2009, 10:45:06 AM »

Does anyone still have suggestions for this?
Posted by: ArticWolve
« on: December 28, 2008, 01:01:53 PM »

Hopefully....
(That was one hell of a bump though..................)
Posted by: Vector
« on: December 28, 2008, 11:10:34 AM »

Version v0.4 is much more tuned with the plugin category system.

took out /r77 updates all.

/r77 updates instead uses the category system, which lists if there are any updates to plugins in that category as well.

/r77 get %all% will download all the updates without reloading your scripts.
Posted by: ArticWolve
« on: November 22, 2008, 05:54:33 AM »

Makes my life much easier when scripting.
Posted by: Vector
« on: November 21, 2008, 10:58:01 PM »

It is my pride and joy to introduce version 0.29 of the plugin manager.

This introduces new features for plugin scripters never before seen in the plugin manager.

Fool around with the new commands:

Code: [Select]
/r77 insert list
/r77 insert preview <function>
/r77 insert <function> into <prefix>
Posted by: ArticWolve
« on: November 19, 2008, 12:28:04 PM »

PMed you the screw up. Its a very long quote.
Posted by: Vector
« on: November 19, 2008, 11:29:39 AM »

I'd like to know exactly how it screws it up so I can add beta compatibility without screwing up 2.6r3 compatibility.

Quote from: Hero
I would recommend XML > TXT if you are going to format it like that.
Alright. I'll learn XML then, and how to parse with it.
Posted by: ArticWolve
« on: November 18, 2008, 05:34:22 PM »

This plugin screws up Stealth Bot Beta DR 13, just so you know vector.
Posted by: Hero
« on: November 17, 2008, 01:30:13 PM »

I would recommend XML > TXT if you are going to format it like that.
Posted by: Vector
« on: November 17, 2008, 07:44:05 AM »

Quote from: Vector
  • Update the Plugin Manager to include the command
  • a Functions.txt file with tags to emcompass the new functions
I will just use a functions.txt file, remove the functions.plug plugin, and just have that file updated as new functions are added to the Useful Functions topic.

Example file outline:

Code: [Select]
<IsChar>
  <name>IsChar</name>
  <author>Vector</author>
  <description>Returns True if the character is an alphanumeric character, otherwise returns False</description>

  <code>
    Function IsChar(charact)
      charact = lcase(charact)
      if Asc(charact) >= 97 and Asc(charact) <= 122 then
        IsChar = true
      else
        IsChar = false
      end if
    End Function
  </code>
</IsChar>
This is to make it very easy to pull functions out of this file. The tags will help a LOT. I will not use XML though. Just Split() parsing.

Indent the final code with Chr(255). The reason being is that it will look nice in Functions.txt, but I will be able to make it look decent in plugins because I can just replace Chr(255) with a null string.

[size=]NOTE: All sub/function names are NOT in camel toe naming conventions (InArray instead of inArray)[/size]

@Hero: If you add a function, remember to update the file too.

It will be in scripts\deps\functions.txt
Posted by: Vector
« on: November 13, 2008, 09:16:43 PM »

I am going to implement a feature that will allow scripters to include functions from the "Useful Functions" topic into their plugins. The following updates must be done to allow this:

  • Update the Plugin Manager to include the command
  • a Functions.txt file with tags to emcompass the new functions
  • An HTML page to upload the new function to (won't add if there are any syntax errors, and if password is wrong)

I have not started this, but I still need to know how to use forms properly in HTML. I'll work on this as soon as I can.
Posted by: ArticWolve
« on: October 27, 2008, 02:27:52 PM »

Sweet! I'll update sooner or later.
Posted by: Vector
« on: October 27, 2008, 01:10:54 PM »

Implemented an update manager.
Posted by: Vector
« on: October 27, 2008, 12:25:40 PM »

SB 2.6r3. It should work fine with the beta too.

Re-download. I fixed a type casting error, so the plugin should show you newer updates to plugins you've already downloaded and such.
Posted by: ArticWolve
« on: October 25, 2008, 12:01:00 PM »

It has something to with the above stated error. Let me look at mine and see if it errors. I won't promise that I can fix it.
@Vector: Did you try this in SB 2.6 R3 or SB Beta??