Thread: Stalls

Results 1 to 9 of 9
  1. #1 Stalls 
    UltimateRealm
    Guest
    hey
    how exactly do i add a working stall to my server
    the base is RichScape

    i have added the stall into the server

    a silver stall
    object id : 628

    how exactly do i make it so i can steal from it and get xp and items?


    remember
    it is RichScape base
    Thank You
     

  2. #2  
    Registered Member
    JakobWolthers's Avatar
    Join Date
    Aug 2007
    Age
    31
    Posts
    616
    Thanks given
    16
    Thanks received
    3
    Rep Power
    84
    find a object case, and under break; add a new case
    Code:
    case 628:
    Stuff in here 
    break;
    just a template ;D
     

  3. #3  
    UltimateRealm
    Guest
    Quote Originally Posted by danewolf View Post
    find a object case, and under } add a new
    Code:
    case 628:
    Stuff in here 
    break;
    just a template ;D
    where it says (stuff in there) what i put?
     

  4. #4  
    Registered Member
    JakobWolthers's Avatar
    Join Date
    Aug 2007
    Age
    31
    Posts
    616
    Thanks given
    16
    Thanks received
    3
    Rep Power
    84
    what the case shall do,

    example:
    Code:
    case 628:
    if(playerLevel[17] =< 15) 
    {
      addItem(995, 1000);
    } else
    sM("You need Thieving Level 15 or Higher");
    break;
    if(playerLevel[17] =<15) means you need 15 or above to do that action

    addItem(995, 1000); means you get 1000 cash if you meet the requirement (15+ thieving)

    sM("You need Thieving Level 15 or higher"); sends a message to player, if he have thieving level under 15

    Break; ends the case
     

  5. #5  
    Registered Member

    Join Date
    Feb 2007
    Age
    28
    Posts
    6,414
    Thanks given
    354
    Thanks received
    323
    Rep Power
    5000
    Quote Originally Posted by UltimateRealm View Post
    where it says (stuff in there) what i put?
    The action you want it too do when you click on the case wanted.


    Menacescape - Runescape Private server
    Come to Menacescape. We've been online for over two years with an active community!
     

  6. #6  
    UltimateRealm
    Guest
    Quote Originally Posted by danewolf View Post
    what the case shall do,

    example:
    Code:
    case 628:
    if(playerLevel[17] =< 15) 
    {
      addItem(995, 1000);
    } else
    sM("You need Thieving Level 15 or Higher");
    break;
    if(playerLevel[17] =<15) means you need 15 or above to do that action

    addItem(995, 1000); means you get 1000 cash if you meet the requirement (15+ thieving)

    sM("You need Thieving Level 15 or higher"); sends a message to player, if he have thieving level under 15

    Break; ends the case
    if i add that to client.java will it work?
     

  7. #7  
    Registered Member
    JakobWolthers's Avatar
    Join Date
    Aug 2007
    Age
    31
    Posts
    616
    Thanks given
    16
    Thanks received
    3
    Rep Power
    84
    Quote Originally Posted by UltimateRealm View Post
    if i add that to client.java will it work?
    yea but you need to change sM to sendMessage or what the base use to send messages? but it wil only give you a item, you need to add the emote and anim by yourself as i said it was just a example
     

  8. #8  
    UltimateRealm
    Guest
    Quote Originally Posted by danewolf View Post
    yea but you need to change sM to sendMessage or what the base use to send messages? but it wil only give you a item, you need to add the emote and anim by yourself as i said it was just a example
    do u think you could try and tell me the how thing?
    i will really appreciate it
    i am new to coding so...
     

  9. #9  
    Registered Member
    JakobWolthers's Avatar
    Join Date
    Aug 2007
    Age
    31
    Posts
    616
    Thanks given
    16
    Thanks received
    3
    Rep Power
    84
    sure, add me on msn then [email protected]
     


Thread Information
Users Browsing this Thread

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


User Tag List

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