-CrAzY- Posted August 11, 2007 Share Posted August 11, 2007 i want to change the name of the levels into ranks like scumbag, civilian vandal... but i want to only change the name of the levels, so wen i make a new house i still put Minh Level as 1 , 2 ,3 ........ thanks! Quote Link to comment Share on other sites More sharing options...
YoungGold Posted August 11, 2007 Share Posted August 11, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civilian.. well you jsut add a mod called ranks you dont edit the name of the levels i dont even think you can you jsut add a mod called ranks. Quote Link to comment Share on other sites More sharing options...
Phases Posted August 13, 2007 Share Posted August 13, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili i want to change the name of the levels into ranks like scumbag, civilian vandal... but i want to only change the name of the levels, so wen i make a new house i still put Minh Level as 1 , 2 ,3 ........ thanks! yes... you can. I think you should pay someone to do it for you, since just about everyone here can do it...except you. Quote Link to comment Share on other sites More sharing options...
3XTR3M3 Posted August 13, 2007 Share Posted August 13, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civilian.. yup Phases is corect Quote Link to comment Share on other sites More sharing options...
-CrAzY- Posted August 13, 2007 Author Share Posted August 13, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civilian.. yeh, haha, very funny, ive done now anyway you n00b Quote Link to comment Share on other sites More sharing options...
CraigF Posted August 14, 2007 Share Posted August 14, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili i havent looked at php code for a month now lol but if i understand what your saying code would be something like this: if ($ir['level'] == 1) { $ir['rank'] == Scum } OR if ($ir['level'] == 1) { print "Scum"; } Quote Link to comment Share on other sites More sharing options...
Matty Posted August 14, 2007 Share Posted August 14, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili It would be... R if ($ir['level'] == 1) { echo "Scum"; } The first one seems unlikly. Quote Link to comment Share on other sites More sharing options...
CraigF Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili i meant make a part of the table called Rank aswell though =] Quote Link to comment Share on other sites More sharing options...
Matty Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili No, That still wont work... /// If user level is one then... if ($ir['level'] == 1) { ///$ir['rank'] varible equals scum $ir['rank'] == Scum } It doesnt output anything... nor does it select or add anything to a table... Quote Link to comment Share on other sites More sharing options...
SaMz Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civilian.. i think he means when you go up levels it souldnt be numbers it should be words lol should be pretty basic Quote Link to comment Share on other sites More sharing options...
CraigF Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili if ($ir['level'] == 1) { ///$ir['rank'] varible equals scum mysql_qry=UPDATE users SET rank=Scum } but obviously with the mysql query right Quote Link to comment Share on other sites More sharing options...
SaMz Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civilian.. -CrAzY- is confusing sometimes lol when he needs help he doesnt write it clearly lol Quote Link to comment Share on other sites More sharing options...
Matty Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili if ($ir['level'] == 1) { ///$ir['rank'] varible equals scum mysql_qry=UPDATE users SET rank=Scum } but obviously with the mysql query right ? Whats the point in that? Your still not going to display anything... so then you still have to add (echo 'Rank :'.$ir[rank].'.';) in there... The query is pointless and a waste of resources =/ if ($ir['level'] == 1) { echo "Scum"; } Does the same, no mysql! Quote Link to comment Share on other sites More sharing options...
CraigF Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili if ($ir['level'] == 1) { echo "Scum"; } Does the same, no mysql! THats what i suggested at first, exactly that except for it was print "Scum"; not echo "Scum"; lol Quote Link to comment Share on other sites More sharing options...
iseeyou94056 Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili crazy if you want to learn go to http://www.dev-tuts.com/ sign up and look at stuff on there and try and learn from that there is not alot on there yet beacuse it is new but it is very very help full Quote Link to comment Share on other sites More sharing options...
Decepti0n Posted August 15, 2007 Share Posted August 15, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civilian.. They don't seem to be very good tutorials Quote Link to comment Share on other sites More sharing options...
Matty Posted August 16, 2007 Share Posted August 16, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili if ($ir['level'] == 1) { echo "Scum"; } Does the same, no mysql! THats what i suggested at first, exactly that except for it was print "Scum"; not echo "Scum"; lol I know... I just stated that the second example you gave was incorrect. lol ;) They don't seem to be very good tutorials LOL I like this one... HTML Basics HTML stands for HTML stands for Hyper Text Markup Language HTML files end with .html Text / Links When using html you can format text so that its bold underlined and much more by editing the html tag for example Code BOLD Would output: Bold Code Home Would output: Home as a link once click it will redirect the user to the index.html page. Submited By: EmoCoder Its now You shouldnt be learning HTML is way out of date, you should be learning XHTML and CSS... Get with the future, you will need to if you want to get anywhere. Also HTML files can end in more than just *.HTML... Frontpage defualts to *.htm. You can have *.shtml, *.xhtml as defualts aswell... Then depending what your server is configured to you can have it as any extension you want, so longs as its not in use! Quote Link to comment Share on other sites More sharing options...
iseeyou94056 Posted August 16, 2007 Share Posted August 16, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili it was just made after it get ppl on it it will b diff Quote Link to comment Share on other sites More sharing options...
CraigF Posted August 16, 2007 Share Posted August 16, 2007 Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili I know... I just stated that the second example you gave was incorrect. lol :wink: Yeah, you seem a cool guy =] You make a good mod Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.