answersLogoWhite

0

How do you get your str up in rs?

User Avatar

Anonymous

15y ago
Updated: 8/18/2019

There is a few ways, i got my 99 defence in giant Spiders in the level3 stronghold of security, and a lot of people train other skills there too. give that a try. be sure to take good gear though, they can hit a max of 70. and can hit quite often with low defence. 70+ cb recommended.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you make a str pure on rs?

Well to make a perfect str pure you would simply train your str


What is a good str lvl at cb lvl 33 on rs?

62.


Where is the best place to train str on rs?

hi my runescape name is tvaddict22. add me. the best place to train str is at the earth warriors.


What is the best weapon on rs?

Depends i would AGS for the spec, but the highest str bonus weapon is Chaotic Maul.


Can someone give you a rs account str pure?

No; transferring accounts between players is against the rules of RuneScape.


How do you get 99 str in rs?

well i would do soulwars and purchese lots of strength xp or do just attack lots of monsters


Good cheap 70 str 70 att wep on rs?

F2p: Rune Scimitar P2p: Dragon Dagger (p++)


Rs what is the max hit with 99 str no prayer nor pot in f2p?

Depending on which weapon and monster but with a rune 2h it is around 24.


How do you reverse a string with array and function?

<?php $str = "1234567"; $strArr = str_split($str); //split up $str by 1 character $strlen = strlen($str) - 1; //get length of $str - 1 since the $strArr starts at 0 for($i=$strlen;$i>=0;$i--) { echo $strArr[$i]; } ?>


To display string in a title case in c?

#include<stdio.h> #include<conio.h> #include<string.h> int main() { int tmp,i; char str[30]; printf("Enter any string: "); gets(str); for(i=0; str[i]!='\0'; i++) { if(str[i-1]==' ' i==0) { if(str[i]>='a' && str[i]<='z') str[i]=str[i]-32; else if(str[i]>='A' && str[i]<='Z') str[i]=str[i]+32; } printf("%c",str[i]); } getch(); return 0;}


A c program which will remove all the spaces from a given string?

RemoveSpaces (char *str) { char *new = str; while (*str != '\0') { if (*str != ' ') *(new++) = *str; str++; } *new = '\0'; }


How do you write a C program to input a string of lowercase alphabets and convert it to uppercase using a loop?

void to_uppercase (char* str) { if (str == 0) return; while (*str != '\0') { if (*str>='a' && *str<='z') *str-=32; ++str; } }