Nostale Live Programming

06/05/2013 18:49 TheTempler#76
sry my firewall has blocked xD
now gm commands? :P
06/05/2013 18:52 Kingrap#77
Quote:
Originally Posted by TheTempler View Post
sry my firewall has blocked xD
now gm commands? :P
there isn't GM commands in 0.5 ^^ in 0.6 i added 3 commands but i say this command just when i release xD
06/05/2013 18:53 szymek111#78
Quote:
Originally Posted by Kingrap View Post
there isn't GM commands in 0.5 ^^ in 0.6 i added 3 commands but i say this command just when i release xD
Today you make live ? Or no ?
06/05/2013 19:03 Kingrap#79
Quote:
Originally Posted by szymek111 View Post
Today you make live ? Or no ?
i can't CPU 100% but i work to it don't worry ;)
06/05/2013 19:04 milsowa#80
i watch all your life streams :D
06/05/2013 19:11 TheTempler#81
when is release? :P
06/05/2013 22:28 dome1#82
Nostale Live Programming Portale

portals.ini 50 portals

Update 05.06.2013: new labeling
Update 06.06.2013: ̶1̶̶0̶̶1̶̶ ̶̶p̶̶o̶̶r̶̶t̶̶a̶̶l̶̶s̶ ̶2̶̶0̶̶1̶̶ ̶̶p̶̶o̶̶r̶̶t̶̶a̶̶l̶̶s̶ 2̶̶4̶̶1̶̶ ̶̶p̶̶o̶̶r̶̶t̶̶a̶̶l̶̶s̶ current 277 portals inkl. Akt 4

[Only registered and activated users can see links. Click Here To Register...]
06/06/2013 00:43 ramblox#83
Devil :D there is another problem, namely in terms of displaying the map names on the minimap ;)

[Only registered and activated users can see links. Click Here To Register...]
06/06/2013 00:48 dome1#84
The reason is that you can not enter a maptitle or kingrap ?
Das liegt daran dass man keinen maptitle eingeben kann oder kingrap ?
06/06/2013 01:06 ramblox#85
Quote:
Originally Posted by dome1 View Post
The reason is that you can not enter a maptitle or kingrap ?
Das liegt daran dass man keinen maptitle eingeben kann oder kingrap ?
maptitle would have to be added in to the Game server files
06/06/2013 02:15 Kingrap#86
Quote:
Originally Posted by ramblox View Post
maptitle would have to be added in to the Game server files
to late.. i add packet for map title in 0.7.. thank for report..

• Player vs Mob
• Respawn Mob
• Default Skill (Primary & Secondary | All class | no customizable )
• Exp & Job
• Rate Exp & Job customizable (config.ini)
• Command GM $shutdown < Password > (ex. $shutdown 123456 | customizable password / enabled / rank in config.ini )
• Level Up
• Primary & Secondary armor client side ( All class, momentarily )
• Bug Fix ( Reputation )
• Save Exp / Job / Level on database ( % included )
• Damage based on Level and Class ( no customizable )
• Source Code Cleanup
• Added Exp_Points and Job_Points in mobs_stat.ini

Example of mobs_stat.ini
Code:
0 = MOB_ID LEVEL HP MP SPEED LOCK EXP_POINTS JOB_POINTS
06/06/2013 04:01 ツLycianツ#87
I can try what i want i cant connect on your server files :/

But nice work anyway .^.
06/06/2013 08:56 ramblox#88
nice;) or in version 0.7 you add options Mob vs Player or 0.8? ;)
06/06/2013 09:24 Kubixiorek#89
Maybe in next release create Player vs Player on choosed ID map?
06/06/2013 11:55 Schnuffel16#90
1.If you make new characters the client close. Server Error message is :
Quote:
Field 'Exp-Points' dosen't have a default value
Quote:
Field 'Job-Points' dosen't have a default value
I look in these tables and the have no value, if you change your code to this the character creation works
Code:
DROP TABLE IF EXISTS `characters`;
CREATE TABLE `characters` (
  `ID` int(5) NOT NULL,
  `Slot` int(1) NOT NULL,
  `Name` varchar(15) NOT NULL,
  `Number` int(5) NOT NULL AUTO_INCREMENT,
  `Sex` int(1) NOT NULL,
  `Hair` int(1) NOT NULL,
  `Color` int(1) NOT NULL,
  `Class` int(1) NOT NULL,
  `Level` int(2) NOT NULL,
  `Job` int(2) NOT NULL,
  `Map` int(5) NOT NULL,
  `X` int(3) NOT NULL,
  `Y` int(3) NOT NULL,
  `Z` int(1) NOT NULL,
  `Speed` int(1) NOT NULL,
  `Reputation` int(11) NOT NULL,
  `Exp_Points` int(11) [B]DEFAULT '0'[/B],
  `Job_Points` int(11) [B]DEFAULT '0'[/B],
  PRIMARY KEY (`Number`)
) ENGINE=InnoDB AUTO_INCREMENT=10011 DEFAULT CHARSET=latin1;
or you add in the config ini exp Points
Code:
[CHAR NEW]
CENSURED_WORDS = TM GA BA SGM SMOD MOD GM TGM TMOD GF CoMa Gm
SPAWN = 1 79 116 0
LEVEL = 1
JOB = 1
CLASS = 0
SPEED = 10
REPUTATION = 0
[B]Exp_Points = 0
Job_Points = 0[/B]
2.. I have make three character in my account and if i play with one and log out the server save the same log out coordinates in all three characters.

I can attack Monster that work fine, now you can add monster can also attack me and drop items :)

I'm waiting now for the next Version :)