Skip to main content

Preparing some plugins for upcoming server

Since i still having a free server from mine friends who in Taiwan keep supporting me for server hosting. For long time busy, and he hope i would still operate and having a survival server so i coming to build up a survival server that not like before only enhance survival gameplay instead of new gameplay and make player doesn't even know how to play.

Here come with some idea before i preparing:
  • Custom Building Structure ( Make player easier for some basic works )
  • Custom PvP & PvE Mechanic ( Make item flexible with skill system and update-able, also work with entity )
  • Socialize Gamplay ( Guilds & Friends & Party & Mail System )
  • Daily Gameplay ( Questing, Events ) 
  • Any suggestion would be appreciated ( welcome to inbox me :] )
Some images about mine developments in these 2 days.

Mine Structure API
Skill API work with Items system & Status system
And here is the video about the Custom Building Structure Part.



As past experience of starting up & operating a server, what player want is custom feature & addon to existing gameplay and not customize and change the original gameplay. I feel so sorry about the players who hope i can create a good server for them due to my inexperience to operating server.

Thanks for watching about this and here i also have share about the API.
  •  FightAPI - API for handling fighting event original created by Oskang09.
    You can change the line "Invoker.invokeEvent()" to your own handling code with the name there already remind about firing what type event like "playerDamagePlayerEntityEvent()".

Popular posts from this blog

Flutter codebase sharing

# Clone For master branch come with example, you can clone and run `flutter doctor && flutter run` ``` git clone --single-branch --branch master https://github.com/Oskang09/Flutter-CB2019.git ``` For codebase branch just empty codebase, but setup done you can just start your development. ``` git clone --single-branch --branch codebase https://github.com/Oskang09/Flutter-CB2019.git ``` # Plugins * Dart as "Programming Language" * Flutter as "SDK" * Redux as "State Management" * Fluro as "Navigator Router" # pubspec.yaml ```yaml name: flutter_codebase description: A new Flutter project. version: 1.0.0+1 environment: sdk: ">=2.0.0-dev.68.0 (); Router router = Router(); routers.forEach( (route) { router.define( route.routePath, handler: Handler( handlerFunc: (context, params) => route.widget(params) ), transitionType: route.transitionType ...

Object & Container Object

Object / Class What is Object? Object can be people, can be animal, can be anything. Object only store his own data, attributes and property like house has price, size and animal has age and gender.  Object also store his own function or method like animal can eat(); and people can walk();. Try imagine an object is a people, what should it have and what should it don't have? Let's take this example. public class People { private: String name; int age; int hungry; public: void grow() { this->age += 1; } void eat() { hungry = false; } } People can eat, people will grow up so this is true but you try imagine a people can fly(); ? What other programmer see when want to use ur code? "WTF, WTF is this? Oh my godness." so just store whatever the object need, have is enough. When some attribute is too much and enable to split to another object,...