Results 1 to 22 of 22

Thread: I Have Nothing!

  1. #1
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default I Have Nothing!

    Hi ummm idk anything lol but could anyone tell me how to script smthing really simple to start me off ile need alot of help XD but ide like to start smwhere I am currently taking ICT class in high school and we did some Supercard and now using RealBasic so I have no online scripting yet. So if anyone can help out please post.

    XD dont post cuz thats just evil

  2. #2
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    What better place to start than here:
    http://villavu.com/forum/forumdisplay.php?f=191
    ? :]

    Follow some of the beginner tutorials, start making a script, and if you have any questions while scripting just ask in the 'Scripting Help' section.
    Good Luck!

  3. #3
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    I can help you with stuff if you need it, too. However you want help (Vent, Team Viewer, subversion, whatever. ). Good luck.

  4. #4
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    I can help you with stuff if you need it, too. However you want help (Vent, Team Viewer, subversion, whatever. ). Good luck.
    ummmm I have no idea what u just said XP I am so stupid lol... and I was thinking if maybe it was possible to do an auto party room baloon poper and item taker or maybe thats too advanced for me XD

  5. #5
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by YoHoJo View Post
    What better place to start than here:
    http://villavu.com/forum/forumdisplay.php?f=191
    ? :]

    Follow some of the beginner tutorials, start making a script, and if you have any questions while scripting just ask in the 'Scripting Help' section.
    Good Luck!
    ty YoHoJo ile check it out now.

  6. #6
    Join Date
    Jan 2009
    Location
    Turlock/LA, California
    Posts
    1,494
    Mentioned
    3 Post(s)
    Quoted
    66 Post(s)

    Default

    i am always available too. any IMing system or just pm

  7. #7
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Vent, Team Viewer, subversion. Just different ways I could help. Or typewith.me, I guess. Just whatever floats your boat.

  8. #8
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    Vent, Team Viewer, subversion. Just different ways I could help. Or typewith.me, I guess. Just whatever floats your boat.
    oh lol they are different kinds of msging programs lol XP

  9. #9
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well i just found a tutorial to cut trees XP going to try to make it i am currently using Coh3ns Draynor ChopNBank but his oaks are near the jail and smtimes my character gets lost XP so I want to try to make it cut the oak right outside the bank will this tutorial work? http://villavu.com/forum/showthread.php?t=44942

  10. #10
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Actually, none of them are messaging programs, really. I dunno how you got that. (Except typewith.me.. Not a program, though.)

  11. #11
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    Actually, none of them are messaging programs, really. I dunno how you got that. (Except typewith.me.. Not a program, though.)
    lol well websites XD but its basically a way to talk to others XP so its also basically a msging program...

  12. #12
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;
    With Players[0] do
    Name :=''; //Enter your Runescape username
    Pass :=''; //Enter your Runescape password
    Nick :=''; //Enter 3-4 Letters from username (not first letter)
    Active:=True; //Idk why u would but set to False to deactivate Player 0
    end;

    I followed a tutorial and got that with the rest of the script it was from the tutorial I put link to above. for some reason it keeps saying:
    Unknown identifier 'HowManyPlayers' in script
    what do i change?
    and can smone post a link to a banking tutorial or tell me a script for banking?

  13. #13
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Instead of doing HowManyPlayers := 1; NumberOfPlayers(HowManyPlayers);, just do NumberOfPlayers(1);. And change that number accordingly to how many players you're using.

  14. #14
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    Instead of doing HowManyPlayers := 1; NumberOfPlayers(HowManyPlayers);, just do NumberOfPlayers(1);. And change that number accordingly to how many players you're using.
    ok i did this it still has same problem:
    begin
    NumberOfPlayers(1);
    CurrentPlayer :=0;

    Players[0].Name := 'username'; //Username
    Players[0].Pass := 'password'; //Password
    Players[0].Nick := 'nick'; //3-4 letters from your username
    Players[0].Active := True;
    end;

  15. #15
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    You didn't call SetupSRL;, did you?

  16. #16
    Join Date
    Feb 2010
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ummm not sure anymore I deleted it cuz it would work and anyways it was just basically a copy of a tutorial so can anyone post a different tutorial which would actually work and show how to cut logs and bank and walk. Plz and Thankyou

  17. #17
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    That tutorial works just fine for me, but whatever. And if you actually want to learn, you should just read tons of tutorials. Or I could try to help you one on one.

  18. #18
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Your forgetting to include srl

  19. #19
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    ^ Was already stated.

  20. #20
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Uh, where?

  21. #21
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    Quote Originally Posted by MylesMadness View Post
    Your forgetting to include srl
    Quote Originally Posted by i luffs yeww View Post
    You didn't call SetupSRL;, did you?
    wat

  22. #22
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Read tutorials, and check from other peoples scripts ( : and ask from forums Goodluck!


    ~Home

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
  •