Jump to content

mugenkaiken

Members
  • Posts

    6
  • Joined

  • Last visited

mugenkaiken's Achievements

Poring

Poring (1/15)

  • First Post
  • Conversation Starter
  • Dedicated
  • Reacting Well
  • Week One Done

Recent Badges

0

Reputation

  1. Sorry fixed already just needed to restart server seems the @reloadnpcfile is not enough
  2. Hi as the title says I'm getting an [Error]: npc_event: event not found [Warpcreator::OnWhisperGlobal] here is my code - script Warpcreator -1,{ OnWhisperGlobal: if(getgmlevel() < 99) end; if(@whispervar0$ == "Warpcreate") { // Dialogue setup switch(select("Create Warp Portal","Nevermind")) { case 1: mes "Greetings, Esteemed Game Master! I can help you create a warp portal."; next; mes "Please provide me with the necessary details to create the portal."; next; mes "Enter the X coordinate for the portal's placement:"; input .@portalX; next; mes "Enter the Y coordinate for the portal's placement:"; input .@portalY; next; mes "Enter the destination map name:"; input .@map$; next; mes "Enter the destination X coordinate:"; input .@destX; next; mes "Enter the destination Y coordinate:"; input .@destY; warpportal .@portalX,.@portalY,.@map$,.@destX,.@destY; mes "You have successfully created a warp portal to " + .@map$ + "."; close2; case 2: mes "Alright, esteemed Game Master. Feel free to return if you ever need my assistance."; close; } } end; }
  3. Hi as the title says I'm getting an [Error]: npc_event: event not found [Warpcreator::OnWhisperGlobal] here is my code - script Warpcreator -1,{ OnWhisperGlobal: if(getgmlevel() < 99) end; if(@whispervar0$ == "Warpcreate") { // Dialogue setup switch(select("Create Warp Portal","Nevermind")) { case 1: mes("Greetings, esteemed Game Master! I can help you create a warp portal."); next; mes("Please provide me with the necessary details to create the portal."); next; mes "Enter the X coordinate for the portal's placement:"; input .@portalX; next; mes "Enter the Y coordinate for the portal's placement:"; input .@portalY; next; mes "Enter the destination map name:"; input .@map$; next; mes "Enter the destination X coordinate:"; input .@destX; next; mes "Enter the destination Y coordinate:"; input .@destY; warpportal .@portalX,.@portalY,.@map$,.@destX,.@destY; mes("You have successfully created a warp portal to " + .@map$ + "."); close2; case 2: mes("Alright, esteemed Game Master. Feel free to return if you ever need my assistance."); close; } } end; }
  4. Critical Error An error was encountered during the lifetime of the application. This could be due to a variety of problems, such as a bug in the application. However, normally it is caused by misconfiguration. Exception Details Error: Flux_Error Message: Critical MySQL error in Installer/Updater: Duplicate column name 'use_existing' File: /var/www/html/lib/Flux/Installer/Schema.php:131 File Line Function/Method /var/www/html/lib/Flux/Installer/Schema.php 155 Flux_Installer_Schema::install() /var/www/html/lib/Flux/Installer.php 75 Flux_Installer_Schema::update() /var/www/html/modules/install/index.php 31 Flux_Installer::updateAll() /var/www/html/lib/Flux/Template.php 375 include() /var/www/html/lib/Flux/Dispatcher.php 170 Flux_Template::render() /var/www/html/index.php 177 Flux_Dispatcher::dispatch() Exception Trace As String #0 /var/www/html/lib/Flux/Installer/Schema.php(155): Flux_Installer_Schema->install(20081109093448) #1 /var/www/html/lib/Flux/Installer.php(75): Flux_Installer_Schema->update() #2 /var/www/html/modules/install/index.php(31): Flux_Installer->updateAll() #3 /var/www/html/lib/Flux/Template.php(375): include('/var/www/html/m...') #4 /var/www/html/lib/Flux/Dispatcher.php(170): Flux_Template->render()
×
×
  • Create New...