Jump to content

LordOdin

Members
  • Content Count

    13
  • Joined

  • Last visited

About LordOdin

  • Rank
    Member

Profile Information

  • Github
    None
  • Emulator
    rAthena

Recent Profile Visitors

1854 profile views
  1. You will need to diff you client to enable higher id's
  2. Unfortunately not, no the client doesn't like it, you would need to invest in someone developing a custom client.exe file for that to be possible.
  3. you will need to hex your client and replace a current map that already has sky with clouds there's more than likely a post some where on here about how to hex your client.
  4. Hi guys, Is there away to have https:// on login,registration,donation pages on flux cp? without doing a rewrite rule for site wide as thor patcher plays up and doesn't work. thx
  5. Hi guys I am having real trouble getting my thor patcher to connect too my web host, the only error message i get is either "attempting to connect" or "failed to communicate with server" here is my config.ini [Config:Main] RootURL='http://www.praetoriaro.com/patcher/' RemoteConfigFile='main.ini' TimeOut=0 StatusFile='PraetoriaRO.dat' DefaultGRF='info.grf' ClientEXE='PraetoriaRO.exe' ClientParameter='-1rag1' FinishOnConnectionFailure=false [Config:Window] AutoResize=true Style='none' Width=500 Height=430 DragHandling=true Background='images/bg.jpg' FadeOnDrag=true [Config:BGM] File= Loop=true Volume=20 Directory= [Config:Misc] Title='PraetoriaRO Patcher' HideProgressBarWhenFinish=true [ProgressBar:bar1] Width=310 Height=20 Left=22 Top=385 BackColorStart=$009DEEEF BackColorEnd=$00C2F1F1 FrontColorStart=$006ED5B0 FrontColorEnd=$0080DDCA FrontImage= BackImage= Hook='ProgressChange' [Label:Status] AutoResize = false Width=310 Height= Left=20 Top=365 Alignment='center' FontColor=$ffffff FontName = '' FontSize = Text='' Hook='StatusChange' [NoticeBox:Box0] Width=310 Height=150 Left=20 Top=200 URL='http://www.praetoria.com/patcher/index.html' [Button:Start] Default='images/start1.png' OnHover='images/start2.png' OnDown='images/start3.png' Left=383 Top=211 Hook='Start' [Button:Exit] Default='images/Exit1.png' OnHover='images/Exit2.png' OnDown='images/Exit3.png' Left=383 Top=244 Hook='Exit' [Button:Cancel] Default='images/Exit1.png' OnHover='images/Exit2.png' OnDown='images/Exit3.png' Left=383 Top=211 Hook='Cancel' and here is my main.ini I hope someone could help me please. //Thor Patcher remote config file [Main] //Allow patching or not? allow=true //Should patcher ignore everything else and finish patch immediately? Force_Start=false //if not, what message should appear? policy_msg=Server is taking a nap. //file_url - patch files should ALL put here. // This config entry will override the one in embed config. // o HTTP: // http://domain.com/dir/ // o FTP: // ftp://domain.com/dir/ // o With <Username> [Password] [Port] // ftp://username:[email protected]:port/dir/ // o Note: username is required if want put password, otherwise everything is optional. file_url=http://www.praetoriaro.com/patcher/ [Patch] //use CheckSum tool, hash for client & patcher // used to make sure exe is up to date // (leave empty to disable this feature) ClientSum= PatcherSum= //This is compressed file for patcher & client update // To make these work, ClientSum and/or PatcherSum can't be empty // Note: these files should put same place as patch file (file_url in internal config) //Relative address, not FULL URL! ClientPath= PatcherPath= // Patch list file PatchList=plist.txt [Stars] // Shining o.O (Anyways, its for start button clones) // Since orignal client has check sum.. why not for clones? XD //How many? (it should same as amount of start button clone, but of course it's your choice) clients=0 // _sum - checksum, use CheckSum tool. //client1_sum= // _Name - Filename of exe //client1_Name= // _Path - Path for file [Compressed] //client1_Path= [Misc] //Set a limit for fragment, when reach this limit, patcher will ask user to defrag FragmentLimit=50
  6. ive tried using the page title but it errors Page Not Found The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again. /?module=about
  7. What if the link is for the cms page? kind regards
  8. Thank you so much Mysterious perfect. okay its not what i meant on the whole, what i would like to do is have a main navigation top of the page i have that with the default flux menus but what i would like is home downloads, about etc ie <ul> <li><a href="<?php something goes here?>">Home</a></li> <li><a href="<?php something goes here?>">About</a></li> <li><a href="<?php something goes here?>">downloads</a></li> <li><a href="<?php something goes here?>">etc</a></li> </ul> i dont understand PHP code, so any help with this will be appreaciated Kind regards
  9. A|t the moment the php inside navi.php file is <?php if (!defined('FLUX_ROOT')) exit; ?> <div class="navbar navbar-inverse" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <div class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <?php $menuItems = $this->getMenuItems(); ?> <?php if (!empty($menuItems)): ?> <?php foreach ($menuItems as $menuCategory => $menus): ?> <?php if (!empty($menus)): ?> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"><?php echo htmlspecialchars(Flux::message($menuCategory)) ?> <b class="caret"></b></a> <ul class="dropdown-menu"> <?php foreach ($menus as $menuItem): ?> <li> <a href="<?php echo $menuItem['url'] ?>"><?php echo htmlspecialchars(Flux::message($menuItem['name'])) ?></a> </li> <?php endforeach ?> </ul> </li> <?php endif ?> <?php endforeach ?> <?php endif ?> <?php $adminMenuItems = $this->getAdminMenuItems(); ?> <?php if (!empty($adminMenuItems) && Flux::config('AdminMenuNewStyle')): ?> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Admin Menu <b class="caret"></b></a> <ul class="dropdown-menu"> <?php foreach ($adminMenuItems as $menuItem): ?> <li> <a href="<?php echo $this->url($menuItem['module'], $menuItem['action']) ?>"><?php echo htmlspecialchars(Flux::message($menuItem['name'])) ?></a> </li> <?php endforeach ?> </ul> </li> <?php endif ?> </ul> </div><!--/.nav-collapse --> </div> </div> basically takes the normal side panel menu and but it into a navi bar as dropdown menus what i would like to achieve is single links instead of the drop down menu, ie a link going to home etc i know how to do html5 with bootstrap thats not the problem is turning the php parts into just single links instead of using the default flux side panel menu
  10. Hi guys, I would like to ask some of the more experience web developers on here how do i make a navigation bar with flux cp, ie instead of a drop down menu main menu -> home,news, downloads,rules | Accounts -> etc to Home, about,download,forum,shop,vote single links hope you understand Kind regards
  11. Hi guys Okay I have a few problems that I would like some help with I hope someone can help me? 1. Cursed abbey (abbey01,abbey02,abbey03) is really zoomed in from reading other threads i realized that the newer clients don't read text files anymore so it should be within the lua/lub files, i did try editing worldview but it didn't do a thing so a reverted back i rember from a few years back i used to be in some .txt file viewtable or something like that but looking though the lubs files there isnt any named that 2. the / help /h command is being printed when ever i log in, I did find a thread that explained how to fix this but i would like to know if i change my lub file to this HelpMsgStr = { } will that stop the / help /h commands from printing the command lists in game? ie player types / help /h and what would he get empty screen or the commands in question Kind regards Lord Odin Edit: Okay so client still does read .txt files as it still reads the viewpointtable.txt that is inside data.grf so that much is fixed on the other helpmsg.lub still doesnt fix it, its more of a tempory fix then anything, In game with fix applied you cant list the client commands
  12. Unmanaged Vps/dedicated servers means you install everything yourself all they will provide is the hardware and OS (operating system) and technical support (ie cant connect to server) you will use winscp/putty for linux and remote desktop for windows, Managed means you can ask them to install software you want, all non ro managed hosting companys wont setup the RO server for you but they will install the git,make and other software, If you would like to learn read the wiki on linux OS it will give you all the commands you will need to fully set-up and run a RO Server. On windows its more straight forward you go to your browser and visit mysql git and so on.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.