Results 1 to 8 of 8

Thread: Help me please

  1. #1
    Join Date
    Jan 2015
    Location
    Bahrain
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Help me please

    {$IFDEF RAYMONDPOWNS}{wrappers} function FloodFillTPAWrap(const TPA: TPointArray): T2DPointArray; var tempATPA: T2DPointArray; begin tempATPA:= FloodFillTPA(TPA); Result:= tempATPA; SetLength(tempATPA, 0); end; function FindTPAEdges(const p: TPointArray): TPointArray; begin FindTPAEdgesWrap(p, result); end; Function RotatePoints(Const P: TPointArray; A, cx, cy: Extended): TPointArray; begin RotatePointsWrap(P, A, cx, cy, result); end; function TPAFromCircle(const CX, CY, Radius: Integer): TPointArray; begin TPAFromCircleWrap(CX, CY, Radius, result); end; function TPAFromEllipse(const CX, CY, XRadius, YRadius : Integer): TPointArray; begin TPAFromEllipseWrap(CX, CY, XRadius, YRadius, result); end; function TPAFromBox(const Box : TBox) : TPointArray; begin TPAFromBoxWrap(Box, result); end; Function ReturnPointsNotInTPA(Const TotalTPA: TPointArray; const Box: TBox): TPointArray; begin ReturnPointsNotInTPAWrap(TotalTPA, Box, result); end; function CombineIntArray(const Ar1, Ar2: TIntegerArray): TIntegerArray; begin CombineIntArrayWrap(Ar1, Ar2, result); end; function ReArrangeandShortenArray(const a: TPointArray; Dist: Integer): TPointArray; begin ReArrangeandShortenArrayWrap(a, Dist, result); end; function ReArrangeandShortenArrayEx(const a: TPointArray; w, h: Integer): TPointArray; begin ReArrangeandShortenArrayExWrap(a, w, h, result); end; function CombineTPA(const Ar1, Ar2: TPointArray): TPointArray; begin CombineTPAWrap(Ar1, Ar2, Result); end; function RemoveDistTPointArray(x, y, dist: Integer;const ThePoints: TPointArray; RemoveHigher: Boolean): TPointArray; begin RemoveDistTPointArrayWrap(x, y, dist, ThePoints, RemoveHigher, Result); end; function TPAFromText(const text, font: String; var w,h: Integer): TPointArray; begin TPAFromTextWrap(text, font, w, h, result); end; function GetColors(const Coords: TPointArray): TIntegerArray; begin GetColorsWrap(Coords, Result); end; function Explode(del, str: string): TStringArray; begin ExplodeWrap(del, str, Result); end; function MergeATPA(const ATPA : T2DPointArray): TPointArray; begin MergeATPAWrap(ATPA, Result); end; function SplitTPA(arr : TPointArray; dist : Integer) : T2DPointArray; begin SplitTPAWrap(arr, dist, result); end; function SplitTPAEx(arr : TPointArray; w, h : integer) : T2DPointArray; begin SplitTPAExWrap(Arr, w, h, result); end; function ClearTPAFromTPA(arP, ClearPoints : TPointArray) : TPointArray; begin ClearTPAFromTPAWrap(arP, ClearPoints, result); end; function TPAToATPAEx(arP : TPointArray; w, h : integer) : T2DPointArray; begin TPAtoATPAExWrap(arP, w, h, result); end; function TPAToATPA(arP : TPointArray; dist : Integer) : T2DPointArray; begin TPAtoATPAWrap(arP, dist, result); end; function FindGapsTPA(TPA : TPointArray; MinPixels : integer) : T2DPointArray; begin FindGapsTPAWrap(tpa, MinPixels, result); end; {$ENDIF}
    {$Define SMART}
    {$I SRL-6/SRL.Simba}
    {$i srl-6/lib/misc/srlplayerform.simba}
    {$I SPS/lib/SPS-RS3.Simba}


    someone please tell mehow can i solve this
    my simba dont find srl-6 uupdate i downloaded every plugin, extensions, Srl-6 and Sps but nope it shows me the erroe above
    Please help me

  2. #2
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Please post a readable version of the script, what you have there is completely incomprehensible. Looks like all the spacing has been stripped out.
    It's also incomplete/jumbled up, because you have a bunch of code before the $defines, and none after.

    If the script can be found on the forums, linking the relevant thread will suffice.

    You also mention an error, but it looks like you've forgotten to include it. We'll need that too, to diagnose an issue.
    Last edited by KeepBotting; 01-20-2016 at 03:59 PM.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  3. #3
    Join Date
    Jan 2015
    Location
    Bahrain
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    {$Define SMART}
    {$I SRL-6/SRL.Simba}
    {$i srl-6/lib/misc/srlplayerform.simba}
    {$I SPS/lib/SPS-RS3.Simba}

    i'm missing all these files thats the erroe script doesnt start i downloaded them all and manually added them to srl-6 and sps folder but it doesnt work if someone can TV me i can show them
    Last edited by Natushi; 01-20-2016 at 05:51 PM.

  4. #4
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Natushi View Post
    {$Define SMART}
    {$I SRL-6/SRL.Simba}
    {$i srl-6/lib/misc/srlplayerform.simba}
    {$I SPS/lib/SPS-RS3.Simba}

    i'm missing all these files thats the erroe script doesnt start i downloaded them all and manually added them to srl-6 and sps folder but it doesnt work if someone can TV me i can show them
    Please follow carefully the steps detailed in this thread: https://villavu.com/forum/showthread.php?t=47714
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  5. #5
    Join Date
    Jan 2015
    Location
    Bahrain
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    It's doe the updates didnt download for me because Wizzup is blocked in my kingdom

  6. #6
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Natushi View Post
    It's doe the updates didnt download for me because Wizzup is blocked in my kingdom
    If you can't access wizzup.org, you're going to have a hard time using Simba. You won't be able to download plugins, SRL, or SPS updates as they roll in.

    I won't condone active subversion of governmental Internet censorship ... but if you were to somehow access http://wizzup.org/static/srl/ you could download the tarballs directly and unzip them into the proper directories.

    That'd be C:\Simba\Plugins for the simba_plugins_new.tar.bz2
    And C:\Simba\Includes for both srl-6.tar.bz2 and sps.tar.bz2

    All you'd need would be some sort of proxy. Google can give you more information on that.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  7. #7
    Join Date
    Mar 2013
    Posts
    1,010
    Mentioned
    35 Post(s)
    Quoted
    620 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    If you can't access wizzup.org, you're going to have a hard time using Simba. You won't be able to download plugins, SRL, or SPS updates as they roll in.

    I won't condone active subversion of governmental Internet censorship ... but if you were to somehow access http://wizzup.org/static/srl/ you could download the tarballs directly and unzip them into the proper directories.

    That'd be C:\Simba\Plugins for the simba_plugins_new.tar.bz2
    And C:\Simba\Includes for both srl-6.tar.bz2 and sps.tar.bz2

    All you'd need would be some sort of proxy. Google can give you more information on that.
    He can just manually download them off github.
    #slack4admin2016
    <slacky> I will build a wall
    <slacky> I will ban reflection and OGL hooking until we know what the hell is going on

  8. #8
    Join Date
    Dec 2010
    Posts
    483
    Mentioned
    30 Post(s)
    Quoted
    328 Post(s)

    Default

    I decided to lend a hand.

    I went ahead and uploaded the entire contents of wizzup's srl directory.

    I stuck it on Mega since it shouldn't be blocked there.

    Cheers and all the best

    https://mega.nz/#!c8hknBZa!gieE5ASl8...N5BaHZMxNXcnS8
    Last edited by BraK; 01-21-2016 at 11:58 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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