Jump to content

Clyde

Member
  • Posts

    11
  • Joined

  • Last visited

  • Feedback

    0%

About Clyde

Informations

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Clyde's Achievements

Enthusiast

Enthusiast (6/16)

  • Collaborator
  • Very Popular Rare
  • Dedicated
  • Reacting Well
  • First Post

Recent Badges

129

Reputation

  1. Hi! when using your system, my mount spawns dead lol Do you know why? My syserr also says:
  2. Does anyone have a fix for windows 11? Doesn't seem to work. Also GetVersionEx is deprecated
  3. I'm sorry, but what is the VDI login data? It is not root/123456789
  4. Hi, I filled out the config.php file with my server ip, MySQL user and pw. It still says „server is offline“. anyone else had that problem? Error logs from webspace are clean
  5. Hi, I want to block refining items with magic stone if the item i'm refining has a RefineSet bigger or equal to 1000. Currently I'm doing it like this: case USE_DETACHMENT: { LPITEM item2; if (!IsValidItemPosition(DestCell) || !(item2 = GetItem(DestCell))) return false; if (item2->IsExchanging()) return false; if (item2->GetRefineSet() >= 1000 || item2->GetRefineSet2() >= 1000) ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Du kannst diesen Gegenstand nur beim Legendaren Schmied verbessern. ")); return false; RefineItem(item, item2); } break; It kinda works, It is blocking every item below RefineSet 1000 to use magic stone too which it shouldn't. When i try to refine an item with RefineSet >= 1000, it says the ChatPacket and doesn't refine like it's supposed to do But I want to refine items below 1000 with Magic Stone. Why does that not work? EDIT: Works like that: case USE_DETACHMENT: { LPITEM item2; if (!IsValidItemPosition(DestCell) || !(item2 = GetItem(DestCell))) return false; if (item2->IsExchanging()) return false; if (item2->GetRefineSet() >= 1000 || item2->GetRefineSet2() >= 1000) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Du kannst diesen Gegenstand nur beim Legendaren Schmied verbessern. ")); return false; } else { RefineItem(item, item2); } } break;
  6. Hi, as the title says. Only got this problem now with quest where I do a when xxx.chat."xxx" begin Other quest where i dont do this work. I guess its a source problem, but where? Exact syserr: SYSERR: Oct 14 14:15:49 :: RunState: LUA_ERROR: attempt to call a string value SYSERR: Oct 14 14:15:49 :: GetQuestStateName: QUEST wrong quest state file QUEST_CHAT_TEMP_QUEST.0 SYSERR: Oct 14 14:15:49 :: WriteRunningStateToSyserr: LUA_ERROR: quest QUEST_CHAT_TEMP_QUEST. click
  7. Reup: [Hidden Content] Fix - Gameforge 16.2
  8. Hi Guys! I tried to implement the dungeon info system. Compiling was successful but im getting a kick after the login phase. Error Code: Full gbd backtrace: Does anyone have a solution for this? Ive deleted the whole system and re-implemented it twice EDIT: My input_login: [Hidden Content] the tutorial input_login: [Hidden Content] My input_main: [Hidden Content] the tutorial input_main: [Hidden Content]
  9. If someone got this error: Change: static constexpr auto DiscordClientID = "667352913621942276"; //Change To: static const auto DiscordClientID = "667352913621942276"; //Change (use your DiscordClientID of course) Use these libs: [Hidden Content] These are the only libs that worked for me
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.