Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Fallen

Pages: [1] 2 3 ... 12
1
Announcements / Re: ATTENTION!! TOPIC RENEW TIME!! READ.
« on: December 28, 2010, 11:37:08 am »
okay  ;D - go ahead, make a trash forum and throw all garbage inside ^^

2
Suggestions Board / Re: Log-in with a changed IP adress
« on: December 25, 2010, 11:31:58 am »
Getpaid sux , 200 gold for every survey ... i mean , wthell =/

3
Forum and Game Events / Re: [EoN] Team RE-RECRUITING
« on: November 07, 2010, 03:53:15 pm »
Its not boring  :-X

4
Announcements / Re: Devia is going to be Active again!!
« on: November 07, 2010, 03:51:35 pm »
Well said  ;D

5
Server / Script Guides / [HOT] Adding New Commands
« on: December 26, 2009, 05:48:03 am »
File: ChatCommand.cpp

Find
Quote
{"addmoney" ,      OBJECTTYPE_PLAYER ,   &ChatHandler::AddMoney ,   NULL , NULL},
{"move" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Move ,      NULL , NULL},
{ "fly" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Fly ,         NULL , NULL},
{ "levelup" ,      OBJECTTYPE_PLAYER ,   &ChatHandler::LevelUp ,      NULL , NULL},
{ "kick" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Kick ,      NULL , NULL},
{ "ban",            OBJECTTYPE_PLAYER,  &ChatHandler::Ban ,           NULL , NULL},
{ "ping",           OBJECTTYPE_PLAYER,  &ChatHandler::Ping ,       NULL , NULL},
{ "placard",        OBJECTTYPE_PLAYER,  &ChatHandler::Placard,       NULL , NULL},
{ "online",         OBJECTTYPE_PLAYER,  &ChatHandler::Online ,       NULL , NULL},
{ NULL ,         OBJECTTYPE_PLAYER ,   NULL ,                  NULL , NULL}

add
Quote
{"addmoney" ,      OBJECTTYPE_PLAYER ,   &ChatHandler::AddMoney ,   NULL , NULL},
{"move" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Move ,      NULL , NULL},
{ "fly" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Fly ,         NULL , NULL},
{ "levelup" ,      OBJECTTYPE_PLAYER ,   &ChatHandler::LevelUp ,      NULL , NULL},
{ "kick" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Kick ,      NULL , NULL},
{ "ban",            OBJECTTYPE_PLAYER,  &ChatHandler::Ban ,           NULL , NULL},
{ "ping",           OBJECTTYPE_PLAYER,  &ChatHandler::Ping ,       NULL , NULL},
{ "placard",        OBJECTTYPE_PLAYER,  &ChatHandler::Placard,       NULL , NULL},
{ "online",         OBJECTTYPE_PLAYER,  &ChatHandler::Online ,       NULL , NULL},
{ "YOUR_COMMAND_NAME", OBJECTTYPE_PLAYER, &ChatHandler::YOUR_COMMAND_NAME, NULL, NULL},
{ NULL ,         OBJECTTYPE_PLAYER ,   NULL ,                  NULL , NULL}

And then add a bool handler in the end
Quote
bool ChatHandler::YOUR_COMMAND_NAME(CPlayer* player , const char* args){
//Do stuff here
}

6
Server Development and Discussion / All Known GM Commands
« on: December 26, 2009, 05:40:27 am »
Source: ChatCommand.cpp
                {"addmoney" ,      OBJECTTYPE_PLAYER ,   &ChatHandler::AddMoney ,   NULL , NULL},
      {"move" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Move ,      NULL , NULL},
      { "fly" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Fly ,         NULL , NULL},
      { "levelup" ,      OBJECTTYPE_PLAYER ,   &ChatHandler::LevelUp ,      NULL , NULL},
      { "kick" ,         OBJECTTYPE_PLAYER ,   &ChatHandler::Kick ,      NULL , NULL},
       { "ban",            OBJECTTYPE_PLAYER,  &ChatHandler::Ban ,           NULL , NULL},
       { "ping",           OBJECTTYPE_PLAYER,  &ChatHandler::Ping ,       NULL , NULL}, // uncomment ChatHandler::Ban
       { "placard",        OBJECTTYPE_PLAYER,  &ChatHandler::Placard,       NULL , NULL},
       { "online",         OBJECTTYPE_PLAYER,  &ChatHandler::Online ,       NULL , NULL},

7
Difficulty ~ Easy ~ 1/10

How to Enable *Party other Faction players* MOD
=====================================
File: ServiceLoader.cpp
_______________________________________________________________________
Find { ============================================================= }
   if ( pResPlayer->GetlFaction() != pAimPlayer->GetlFaction() )
   {
      MSG_TIP msg_tip;
      msg_tip.Head.usSize = sizeof(MSG_TIP);
      msg_tip.Head.usType = _MSG_TEAM_TIP;
      wmemset( msg_tip.chName, 0 ,64);
      wmemset( msg_tip.tip, 0 ,128);
      std::wstring   buf = L"\0";
      std::wcsncpy(msg_tip.chName, buf.c_str(), buf.length() );
      buf = L"¶Ô·½ºÍÄã²»ÊÇÏàͬµÄÕóÓ";
      std::wcsncpy(msg_tip.tip, buf.c_str(), buf.length());
      pPlayer->s_World->SendMsgToClient( &msg_tip, pResPlayer->GetSocket() );
      return NO_MSG_ERRO;
   }
Replace { =========================================================== }
   if ( pResPlayer->GetlFaction() == pAimPlayer->GetlFaction() ) // This might work
   {
      MSG_TIP msg_tip;
      msg_tip.Head.usSize = sizeof(MSG_TIP);
      msg_tip.Head.usType = _MSG_TEAM_TIP;
      wmemset( msg_tip.chName, 0 ,64);
      wmemset( msg_tip.tip, 0 ,128);
      std::wstring   buf = L"\0";
      std::wcsncpy(msg_tip.chName, buf.c_str(), buf.length() );
      buf = L"¶Ô·½ºÍÄã²»ÊÇÏàͬµÄÕóÓ";
      std::wcsncpy(msg_tip.tip, buf.c_str(), buf.length());
      pPlayer->s_World->SendMsgToClient( &msg_tip, pResPlayer->GetSocket() );
      return NO_MSG_ERRO;
   }
_______________________________________________________________________

if(1) would work too :D
~~~~~~~~~~~~~Its not tested yet !~~~~~~~~~~~~~~
Also, this might be just a string report to the client.In the other hand this could also mean that the client accepts string commands from the server instead of functions, in that case the above mod should work!

8
Suggestions Board / Re: [Another MMORPG to develop?]
« on: November 25, 2009, 04:51:44 pm »
sounds fun  ;D http://devia.uni.cc go there, il make a new category

9
Suggestions Board / Re: [Another MMORPG to develop?]
« on: November 25, 2009, 04:50:52 pm »
eclipse game? u sure?

10
Server / Script Guides / Re: [Guide by Silfro] Adding a database.
« on: November 24, 2009, 04:39:24 pm »
no lol its not becca from virgo ... shes from poseid

11
Suggestions Board / Re: [Another MMORPG to develop?]
« on: November 21, 2009, 03:34:29 pm »
ok then, il start 0.0!!

12
Suggestions Board / [Another MMORPG to develop?]
« on: November 21, 2009, 03:30:07 pm »
why dont we make an eclipse / vbgore game :)?

13
Server / Script Guides / [Guide by Silfro] Adding a database.
« on: November 21, 2009, 12:28:54 pm »
Credits go to Silfro for this awsome guide ^^

Ok. This is for people who dont know how to add Godswar Database.

Step 1:Download XAMPP
http://www.apachefri...a-installer.exe


Step 2: Installl XAMPP and Open it.



Step 3: Run Apache and MySQL.



Step 4: Go to http://127.0.0.1/phpmyadmin/ and write at new Database " godswar " without ( " )


Step 5: Repeat Step 4 but this time u add " accounts " without ( " ) and not " godswar "


Step 6: Click on left side godswar and click Import.


Resized to 98% (was 979 x 121) - Click image to enlarge



Step 7: Do what you see in Picture.

Resized to 96% (was 1002 x 511) - Click image to enlarge


Step 8: Do the same now with accounts.

Hope it helped. Guide by Silfro  

14
Announcements / Re: [ADMIN - GLOBAL MODERATOR WARNING]
« on: November 21, 2009, 09:49:06 am »
yeah i quitted ^^

15
Announcements / Re: [DNS] - WebRedirect
« on: November 20, 2009, 06:55:20 pm »
nothing, i was modifying teh logo :)

Pages: [1] 2 3 ... 12