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.
Well to make a perfect str pure you would simply train your str
62.
hi my runescape name is tvaddict22. add me. the best place to train str is at the earth warriors.
Depends i would AGS for the spec, but the highest str bonus weapon is Chaotic Maul.
No; transferring accounts between players is against the rules of RuneScape.
well i would do soulwars and purchese lots of strength xp or do just attack lots of monsters
F2p: Rune Scimitar P2p: Dragon Dagger (p++)
Depending on which weapon and monster but with a rune 2h it is around 24.
<?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]; } ?>
#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;}
RemoveSpaces (char *str) { char *new = str; while (*str != '\0') { if (*str != ' ') *(new++) = *str; str++; } *new = '\0'; }
void to_uppercase (char* str) { if (str == 0) return; while (*str != '\0') { if (*str>='a' && *str<='z') *str-=32; ++str; } }