I want urgent help in creatin mod levels in rw script i have tryed lot of things but nothin really works so pls help me .If anyone wud edit the files for includin mod levels wid different funtions (workin) nd upload it here it wud be best thnx all .
Mod Levels In Rw Script
Collapse
X
-
RegzTags: None
-
Regz
Lordx Bro i have tryed doin that but it dont work ,,,,,,,it jst increases level names nd all levels have functions of normal mods ....if u can edit then pls do to create 4 mod levels like say , Owner , Admin ,Head Mod nd Mod wid different functions thnx
Comment
-
if(isadmin
and
if(ismod
if(hadmin
it can be done im always busy i put you in my list to update you with diff tools okVisit: Chat4u.mobi - The New Lay Of being a site of your dreams!
Visit: WapMasterz Coming Back Soon!
_______
SCRIPTS FOR SALE BY SUBZERO
Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
_______
Info & Tips
php.net
w3schools.com
Comment
-
you can set in core is mod admin or ownerVisit: Chat4u.mobi - The New Lay Of being a site of your dreams!
Visit: WapMasterz Coming Back Soon!
_______
SCRIPTS FOR SALE BY SUBZERO
Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
_______
Info & Tips
php.net
w3schools.com
Comment
-
Regz
you can set in core is mod admin or owner[/b]
Comment
-
Regz
-
Code:function ismod($uid) { $perm = mysql_fetch_array(mysql_query("SELECT perm FROM ibwf_users WHERE id='".$uid."'")); if($perm[0]>0) { return true; } } function isadmin($uid) { $admn = mysql_fetch_array(mysql_query("SELECT perm FROM ibwf_users WHERE id='".$uid."'")); if($admn[0]>='2') { return true; }else{ return false; } } function isowner($uid) { $admn = mysql_fetch_array(mysql_query("SELECT perm FROM ibwf_users WHERE id='".$uid."'")); if($admn[0]=='3') { return true; }else{ return false; } }
Comment
-
Code:function getstatus($uid) { $info= mysql_fetch_array(mysql_query("SELECT perm, credits FROM ibwf_users WHERE id='".$uid."'")); if(isbanned($uid)) { return "BANNED!"; } if($info[0]=='3') { return "Owner!"; }else if($info[0]=='2') { return "Administrator!"; }else if($info[0]=='1') { return "Moderator!"; }else{ if($info[1]<10) { return "N00b"; }else if($info[1]<25) { return "SpaRkl3"; }else if($info[1]<50) { return "flaR3"; }else if($info[1]<75) { return "flaM3"; }else if($info[1]<250) { return "buRst"; }else if($info[1]<500) { return "ViTa1"; }else if($info[1]<750) { return "Lava unplugged"; }else if($info[1]<1000) { return "GuRu"; }else if($info[1]<1500) { return "V.I.P"; }else if($info[1]<2000) { return "FaNatic"; }else if($info[1]<2500) { return "Lava KNight"; }else if($info[1]<3000) { return "VeteRaN"; }else if($info[1]<4000) { return "Lava eXpelleR"; }else if($info[1]<5000) { return "MasteR"; }else if($info[1]<10000) { return "ic0N"; }else { return "Lava volcaNo"; } } }
Comment
-
Regz
Comment
-
Guest
-
Regz
replace the functions with the same same in core.php[/b]
Comment
Comment